crossio-core 0.1.0

Core abstractions for the crossio async I/O backend
Documentation
//! Core abstractions shared by every crossio backend.
#![warn(missing_docs)]

pub mod backend;
pub mod config;
pub mod error;
pub mod event;
pub mod interest;
pub mod poller;
pub mod registration;
pub mod token;
pub mod timer;

pub use backend::Backend;
pub use config::BackendConfig;
pub use error::CrossioError;
pub use event::{Event, Events};
pub use interest::Interest;
pub use poller::Reactor;
pub use registration::{Registration, Source};
pub use token::Token;
pub use timer::{TimerId, TimerQueue};