delay_timer 0.11.6

Time-manager of delayed tasks. Like crontab, but synchronous asynchronous tasks are possible, and dynamic add/cancel/remove is supported.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! timer is the core module of the library , it can provide an API for task building ,
//! task scheduling , event handling , resource recovery .

pub mod task;
pub mod timer_core;

pub(crate) mod event_handle;
pub(crate) mod runtime_trace;
pub(crate) mod slot;

pub(crate) use slot::Slot;
pub(crate) use task::{Task, TaskMark};