Reorganize the event_loop module

Split it up into a number of targeted modules for each purpose, for example loop
data, I/O sources, timeouts, and channels. No actual change is intended to be
part of this commit.
This commit is contained in:
Alex Crichton
2016-08-20 23:24:56 -07:00
parent b9dae23e3f
commit 2bd616df51
7 changed files with 1207 additions and 1157 deletions
-1
View File
@@ -27,7 +27,6 @@ mod slot;
#[path = "../../src/lock.rs"]
mod lock;
mod mpsc_queue;
mod channel;
pub use event_loop::{Loop, LoopPin, LoopHandle, AddSource, AddTimeout};
pub use event_loop::{LoopData, AddLoopData, TimeoutToken, IoToken};