Trait asio::TimerQueue [] [src]

pub trait TimerQueue {
    fn schedule_timeout<F>(&self, timeout_ms: u64, f: F) where F: FnOnce() + 'static;
}

Required Methods

fn schedule_timeout<F>(&self, timeout_ms: u64, f: F) where F: FnOnce() + 'static

Always return immediately.

Implementors