Trait polkadot_node_subsystem::TaskKind
pub trait TaskKind {
// Required method
fn launch_task<S>(
spawner: &mut S,
task_name: &'static str,
subsystem_name: &'static str,
future: Pin<Box<dyn Future<Output = ()> + Send>>,
)
where S: Spawner;
}
Expand description
Task kind to launch.
Required Methods§
Object Safety§
This trait is not object safe.