epox 0.2.5

An epoll driven async executor.
Documentation
//! # Features
//!
//! `nightly`: enable features that require a nightly toolchain
#![cfg_attr(feature = "nightly", feature(never_type))]

pub mod signal;
pub mod thread;
pub mod time;
pub mod timer;

pub use executor::{
    Priority, block_on, run, shutdown, spawn, spawn_checked, spawn_checked_with_priority,
    spawn_with_priority,
};
pub use fd::Fd;
pub use nix::sys::epoll::EpollFlags;
pub use signal::AsyncSignal;
pub use task::{Builder as TaskBuilder, yield_now};
pub use timer::Timer;

/** Compatibility with futures-rs. */
pub mod futures;

pub mod executor;
pub mod fd;
pub mod task;

mod queue;