Trait polkadot_node_subsystem::SubsystemContext[][src]

pub trait SubsystemContext: SubsystemContext<Signal = OverseerSignal, AllMessages = AllMessages, Error = SubsystemError> {
    type Message: Debug + Send + 'static;
    type Sender: SubsystemSender + Send + Clone + 'static;
}
Expand description

Convenience trait specialization.

Associated Types

The message type the subsystem consumes.

Sender type to communicate with other subsystems.

Implementors