Trait mz_ore::task::RuntimeExt
source · [−]pub trait RuntimeExt {
fn spawn_blocking_named<Function, Output, Name, NameClosure>(
&self,
nc: NameClosure,
function: Function
) -> JoinHandle<Output>
where
Name: AsRef<str>,
NameClosure: FnOnce() -> Name,
Function: FnOnce() -> Output + Send + 'static,
Output: Send + 'static;
fn spawn_named<Fut, Name, NameClosure>(
&self,
_nc: NameClosure,
future: Fut
) -> JoinHandle<Fut::Output>
where
Name: AsRef<str>,
NameClosure: FnOnce() -> Name,
Fut: Future + Send + 'static,
Fut::Output: Send + 'static;
}
Available on crate feature
task
only.Expand description
Required Methods
fn spawn_blocking_named<Function, Output, Name, NameClosure>(
&self,
nc: NameClosure,
function: Function
) -> JoinHandle<Output> where
Name: AsRef<str>,
NameClosure: FnOnce() -> Name,
Function: FnOnce() -> Output + Send + 'static,
Output: Send + 'static,
fn spawn_blocking_named<Function, Output, Name, NameClosure>(
&self,
nc: NameClosure,
function: Function
) -> JoinHandle<Output> where
Name: AsRef<str>,
NameClosure: FnOnce() -> Name,
Function: FnOnce() -> Output + Send + 'static,
Output: Send + 'static,
Runs the provided closure with a name on a thread where blocking is acceptable.
See tokio::task::spawn_blocking
and the module docs for more
information.
Spawns a new asynchronous task with a name.
See tokio::task::spawn
and the module docs for more
information.