pub trait SpawnEssentialNamed: DynClone + Send + Sync {
    // Required methods
    fn spawn_essential_blocking(
        &self,
        name: &'static str,
        group: Option<&'static str>,
        future: Pin<Box<dyn Future<Output = ()> + Send>>
    );
    fn spawn_essential(
        &self,
        name: &'static str,
        group: Option<&'static str>,
        future: Pin<Box<dyn Future<Output = ()> + Send>>
    );
}
Expand description

Something that can spawn essential tasks (blocking and non-blocking) with an assigned name and optional group.

Essential tasks are special tasks that should take down the node when they end.

Required Methods§

fn spawn_essential_blocking( &self, name: &'static str, group: Option<&'static str>, future: Pin<Box<dyn Future<Output = ()> + Send>> )

Spawn the given blocking future.

The given group and name is used to identify the future in tracing.

fn spawn_essential( &self, name: &'static str, group: Option<&'static str>, future: Pin<Box<dyn Future<Output = ()> + Send>> )

Spawn the given non-blocking future.

The given group and name is used to identify the future in tracing.

Trait Implementations§

§

impl<'clone> Clone for Box<dyn SpawnEssentialNamed + 'clone>

§

fn clone(&self) -> Box<dyn SpawnEssentialNamed + 'clone>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn SpawnEssentialNamed + Send + 'clone>

§

fn clone(&self) -> Box<dyn SpawnEssentialNamed + Send + 'clone>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn SpawnEssentialNamed + Send + Sync + 'clone>

§

fn clone(&self) -> Box<dyn SpawnEssentialNamed + Send + Sync + 'clone>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn SpawnEssentialNamed + Sync + 'clone>

§

fn clone(&self) -> Box<dyn SpawnEssentialNamed + Sync + 'clone>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl SpawnEssentialNamed for Box<dyn SpawnEssentialNamed>

§

fn spawn_essential_blocking( &self, name: &'static str, group: Option<&'static str>, future: Pin<Box<dyn Future<Output = ()> + Send>> )

Spawn the given blocking future. Read more
§

fn spawn_essential( &self, name: &'static str, group: Option<&'static str>, future: Pin<Box<dyn Future<Output = ()> + Send>> )

Spawn the given non-blocking future. Read more

Implementors§