Function wasm_thread::spawn

source ·
pub fn spawn<F, T>(f: F) -> JoinHandle<T>
where F: FnOnce() -> T + Send + 'static, T: Send + 'static,
Expand description

Spawns a new thread, returning a JoinHandle for it.