Struct orchestra::SubsystemInstance
source · pub struct SubsystemInstance<Message, Signal> {
pub tx_signal: MeteredSender<Signal>,
pub tx_bounded: MeteredSender<MessagePacket<Message>>,
pub meters: SubsystemMeters,
pub signals_received: usize,
pub name: &'static str,
}
Expand description
A running instance of some Subsystem
.
M
here is the inner message type, and not the generated enum AllMessages
or #message_wrapper
type.
Fields§
§tx_signal: MeteredSender<Signal>
Send sink for Signal
s to be sent to a subsystem.
tx_bounded: MeteredSender<MessagePacket<Message>>
Send sink for Message
s to be sent to a subsystem.
meters: SubsystemMeters
All meters of the particular subsystem instance.
signals_received: usize
The number of signals already received. Required to assure messages and signals are processed correctly.
name: &'static str
Name of the subsystem instance.