Trait polkadot_node_subsystem::TaskKind
source · 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, Global>>
)
where S: Spawner;
}
Expand description
Task kind to launch.