[][src]Function fibers_global::spawn_monitor

pub fn spawn_monitor<F>(future: F) -> Monitor<F::Item, F::Error> where
    F: Future + Send + 'static,
    F::Item: Send + 'static,
    F::Error: Send + 'static, 

Spawns a fiber by using the global ThreadPoolExecutor and returns a future to monitor it's execution result.