Trait executor_trait::BlockingExecutor[][src]

pub trait BlockingExecutor {
    fn spawn_blocking<'life0, 'async_trait>(
        &'life0 self,
        f: Box<dyn FnOnce() + Send + 'static>
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

A common interface for spawning blocking tasks on top of an executor

Required methods

Convert a blocking task into a future, spawning it on a decicated thread pool

Implementors