mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-21 00:00:10 +02:00
This patch integrate the new timer implementation with the runtime by initializing a timer per worker thread. This allows minimizing the amount of synchronization needed for using timers.
10 lines
266 B
Rust
10 lines
266 B
Rust
//! Utilities for working with Tokio.
|
|
//!
|
|
//! This module contains utilities that are useful for working with Tokio.
|
|
//! Currently, this only includes [`FutureExt`][FutureExt]. However, this will
|
|
//! include over time.
|
|
|
|
mod future;
|
|
|
|
pub use self::future::FutureExt;
|