rust_asio 0.6.0

Asynchronous I/O library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod timer_queue;
pub use self::timer_queue::{Expiry, TimerContext, AsyncTimer, TimerQueue};

#[cfg(target_os = "linux")] mod timerfd;
#[cfg(target_os = "linux")] pub use self::timerfd::{
    TimerFdScheduler as Scheduler,
};

#[cfg(not(target_os = "linux"))] mod mediocre;
#[cfg(not(target_os = "linux"))] pub use self::mediocre::{
    MediocreScheduler as Scheduler,
};