minitimer 0.1.7

A mini timer of delayed tasks. Only asynchronous tasks are possible on tokio runtime, and dynamic add/cancel/remove is supported.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::module_inception)]
mod clock;
pub(crate) mod event;
pub(crate) mod slot;
pub(crate) mod timer;
pub(crate) mod wheel;

pub(crate) use clock::Clock;
pub use event::TimerEvent;
pub use timer::Timer;
pub use wheel::{TaskStatus, WheelCascadeGuide, WheelType};