rsocket_rust 0.7.5

rsocket-rust is an implementation of the RSocket protocol in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::future::Future;

pub fn spawn<F>(task: F)
where
    F: Send + Future<Output = ()> + 'static,
{
    cfg_if! {
        if #[cfg(not(target_arch = "wasm32"))] {
            tokio::spawn(task);
        } else {
            use wasm_bindgen_futures::spawn_local;
            spawn_local(task);
        }
    }
}