kwokka 0.1.1

completion-based async runtime with optional orchestration
Documentation
1
2
3
4
5
6
7
//! Time-driven task utilities -- wall-clock sleeping.
//!
//! [`sleep`] suspends the current task for at least the given duration
//! and resumes it once the runtime timer fires. The returned [`Sleep`]
//! future parks the task rather than spinning while it waits.

pub use kwokka_runtime::timer::{Sleep, sleep};