Function rbatis_core::runtime::task::spawn[][src]

pub fn spawn<F, T>(future: F) -> JoinHandle<T>
Notable traits for JoinHandle<T>
impl<T> Future for JoinHandle<T> type Output = T;
where
    T: 'static + Send,
    F: 'static + Future<Output = T> + Send
Expand description

Spawns a task.

This function is similar to std::thread::spawn, except it spawns an asynchronous task.

Examples

use async_std::task;

let handle = task::spawn(async {
    1 + 2
});

assert_eq!(handle.await, 3);