fedimint_core::runtime

Function spawn

source
pub fn spawn<F, T>(name: &str, future: F) -> JoinHandle<T> 
where F: Future<Output = T> + 'static + Send, T: Send + 'static,