22 releases

0.3.0-alpha.6 Sep 30, 2019
0.3.0-alpha.4 Aug 29, 2019
0.2.13 Feb 4, 2020
0.2.11 May 14, 2019
0.1.0 Jan 12, 2017

#22 in #facilities

Download history 29999/week @ 2023-12-18 19758/week @ 2023-12-25 26937/week @ 2024-01-01 38768/week @ 2024-01-08 35203/week @ 2024-01-15 32880/week @ 2024-01-22 35309/week @ 2024-01-29 37810/week @ 2024-02-05 38848/week @ 2024-02-12 46097/week @ 2024-02-19 45026/week @ 2024-02-26 44614/week @ 2024-03-04 45136/week @ 2024-03-11 46973/week @ 2024-03-18 44530/week @ 2024-03-25 43781/week @ 2024-04-01

182,934 downloads per month
Used in fewer than 82 crates

MIT license

525KB
9K SLoC

tokio-timer

Timer facilities for Tokio

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.


lib.rs:

Utilities for tracking time.

This crate provides a number of utilities for working with periods of time:

  • Delay: A future that completes at a specified instant in time.

  • Interval A stream that yields at fixed time intervals.

  • Throttle: Throttle down a stream by enforcing a fixed delay between items.

  • Timeout: Wraps a future or stream, setting an upper bound to the amount of time it is allowed to execute. If the future or stream does not complete in time, then it is canceled and an error is returned.

  • DelayQueue: A queue where items are returned once the requested delay has expired.

These three types are backed by a Timer instance. In order for Delay, Interval, and Timeout to function, the associated Timer instance must be running on some thread.

Dependencies

~1MB
~18K SLoC