Re-exports§
pub use condvar::CondVar;
pub use stoppable_task::StoppableTask;
pub use stoppable_task::StoppableTaskPtr;
pub use publisher::Publisher;
pub use publisher::PublisherPtr;
pub use publisher::Subscription;
pub use timeout::io_timeout;
Modules§
- Condition variable which allows a task to block until woken up
- Simple broadcast (publish-subscribe) class
- Implementation of async background task spawning which are stoppable using channel signalling.
- Async timeout implementations
Functions§
- Sleep for any number of milliseconds.
- Run a task until it has fully completed, irrespective of whether the parent task still exists.
- Sleep for any number of seconds.