#delay #sleep #interval #timeout #async

timer-kit

A timer toolkit that is generic over the underlying timer implementation

2 releases

0.1.1 Feb 2, 2023
0.1.0 Feb 1, 2023

#635 in WebAssembly

Download history 20/week @ 2023-12-11 12/week @ 2023-12-18 26/week @ 2024-01-08 64/week @ 2024-01-15 72/week @ 2024-01-22 8/week @ 2024-02-05 37/week @ 2024-02-12 68/week @ 2024-02-19 67/week @ 2024-02-26 66/week @ 2024-03-04 115/week @ 2024-03-11 125/week @ 2024-03-18 102/week @ 2024-03-25

410 downloads per month
Used in 2 crates

MIT/Apache

93KB
1.5K SLoC

timer-kit

A timer toolkit that is generic over the underlying timer implementation.

crate_version docs_version

This crate does not implement any platform-specific timer but uses a generic abstraction over the timer implementation to provide a set of timer related tools:

  1. [sleep()]/Sleep
  2. [timeout()]/Timeout
  3. [interval()]/Interval
  4. DelayQueue

This crate currently does not provide any feature beyond the ones that is already provided by tokio, so this crate is completely not needed if you are already using tokio in your project.

The core of this crate is the Delay trait, and it is implemented for the following types by enabling the corresponding features:

Type Feature Target Arch
tokio::time::Sleep "tokio" non-wasm32
smol::Timer "smol" non-wasm32
futures_timer::Delay "futures-timer" non-wasm32
wasm_timer::Delay "wasm-timer" wasm32
fluvio_wasm_timer::Delay "fluvio-wasm-timer" wasm32

WebAssembly support

Support for wasm32-unknown-unknown target depends on the chosen timer implementation. wasm-timer and fluvio-wasm-timer are the only two wasm timer implementations that are currently supported.

Examples

The usage remains mostly similar to those provided in tokio::time with one additional generic type parameter D which is the type of the underlying timer implementation. Please refer to the documentation of the corresponding types for more details.

License: MIT/Apache-2.0

Dependencies

~1–15MB
~177K SLoC