umio/lib.rs
1//! Message Based Readiness API
2//!
3//! This library is a thin wrapper around mio for clients who wish to
4//! use a single udp socket in conjunction with message passing and
5//! timeouts.
6
7extern crate mio;
8
9mod buffer;
10mod dispatcher;
11mod eloop;
12mod provider;
13
14/// Exports of bare mio types.
15pub mod external;
16
17pub use dispatcher::{Dispatcher};
18pub use eloop::{ELoopBuilder, ELoop};
19pub use provider::{Provider};