rust_asio 0.6.0

Asynchronous I/O library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

// mod null;
// pub use self::null::*;

#[cfg(target_os = "linux")] mod eventfd;
#[cfg(target_os = "linux")] pub use self::eventfd::{
    EventFdInterrupter as Interrupter,
};

#[cfg(target_os = "macos")] mod pipe;
#[cfg(target_os = "macos")] pub use self::pipe::{
    PipeInterrupter as Interrupter,
};

#[cfg(windows)] mod socket;
#[cfg(windows)] pub use self::socket::{
    SocketInterrupter as Interrupter,
};