Function eventual::defer [] [src]

pub fn defer<R: Run<Box<TaskBox>> + Send + 'static, A: Async + 'static>(task_runner: R, future_in: A) -> Future<A::Value, A::Error>

This method defers a task onto a task runner until we can complete that call. Currently we only support using a ThreadPool as the task runner itself.