hpx 2.4.8

High Performance HTTP Client
Documentation
//! Runtime components
//!
//! The traits and types within this module are used to allow plugging in
//! runtime types. These include:
//!
//! - Executors
//! - Timers
//! - IO transports

pub mod bounds;
mod timer;
mod tokio;

#[allow(unused_imports)]
pub use self::timer::{ArcTimer, Sleep, Time, Timer};
pub use self::tokio::{TokioExecutor, TokioTimer};

/// An executor of futures.
///
/// This trait allows abstract over async runtimes. Implement this trait for your own type.
pub trait Executor<Fut> {
    /// Place the future into the executor to be run.
    fn execute(&self, fut: Fut);
}