mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-23 00:00:10 +02:00
Add a channel to the futures-mio crate
This commit is contained in:
+10
-7
@@ -16,18 +16,21 @@ extern crate scoped_tls;
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
|
||||
mod readiness_stream;
|
||||
mod event_loop;
|
||||
mod tcp;
|
||||
mod udp;
|
||||
mod timeout;
|
||||
mod timer_wheel;
|
||||
#[path = "../../src/slot.rs"]
|
||||
mod slot;
|
||||
#[path = "../../src/lock.rs"]
|
||||
mod lock;
|
||||
mod mpsc_queue;
|
||||
|
||||
mod channel;
|
||||
mod event_loop;
|
||||
mod mpsc_queue;
|
||||
mod readiness_stream;
|
||||
mod tcp;
|
||||
mod timeout;
|
||||
mod timer_wheel;
|
||||
mod udp;
|
||||
|
||||
pub use channel::{Sender, Receiver};
|
||||
pub use event_loop::{Loop, LoopPin, LoopHandle, AddSource, AddTimeout};
|
||||
pub use event_loop::{LoopData, AddLoopData, TimeoutToken, IoToken};
|
||||
pub use readiness_stream::ReadinessStream;
|
||||
|
||||
Reference in New Issue
Block a user