Add a timer wheel

This commit is contained in:
Alex Crichton
2016-08-03 22:57:07 -07:00
parent 1d7098eece
commit 5c9daad88b
6 changed files with 740 additions and 30 deletions
+3
View File
@@ -23,6 +23,8 @@ mod readiness_stream;
mod event_loop;
mod tcp;
mod udp;
mod timeout;
pub mod timer_wheel;
#[path = "../../src/slot.rs"]
mod slot;
#[path = "../../src/lock.rs"]
@@ -31,4 +33,5 @@ mod lock;
pub use event_loop::{Loop, LoopHandle};
pub use readiness_stream::ReadinessStream;
pub use tcp::{TcpListener, TcpStream};
pub use timeout::Timeout;
pub use udp::UdpSocket;