1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Message Based Readiness API
//!
//! This library is a thin wrapper around mio for clients who wish to
//! use a single udp socket in conjunction with message passing and
//! timeouts.

extern crate mio;

mod buffer;
mod dispatcher;
mod eloop;
mod provider;

/// Exports of bare mio types.
pub mod external;

pub use dispatcher::{Dispatcher};
pub use eloop::{ELoopBuilder, ELoop};
pub use provider::{Provider};