Class: FmsMessageTransmitter
Defined in: workingtitle-instruments-epic2/shared/FmsMessageSystem/FmsMessageTransmitter.ts:11
An interface for sending and clearing messages between the SDK and the plane specific messaging system.
Constructors
Constructor
new FmsMessageTransmitter(
bus
):FmsMessageTransmitter
Defined in: workingtitle-instruments-epic2/shared/FmsMessageSystem/FmsMessageTransmitter.ts:19
Create an instance of the FmsMessageTransmitter
Parameters
Parameter | Type | Description |
---|---|---|
bus | EventBus | The Event Bus. |
Returns
FmsMessageTransmitter
Methods
clearMessage()
clearMessage(
messageTopic?
):void
Defined in: workingtitle-instruments-epic2/shared/FmsMessageSystem/FmsMessageTransmitter.ts:41
Clear a message topic in the aircraft specific messaging system.
Parameters
Parameter | Type | Description |
---|---|---|
messageTopic? | FmsMessageKey | The Message Topic to clear, or undefined to clear top message. |
Returns
void
sendMessage()
sendMessage(
messageTopic
):void
Defined in: workingtitle-instruments-epic2/shared/FmsMessageSystem/FmsMessageTransmitter.ts:25
Send a message topic to the aircraft specific messaging system.
Parameters
Parameter | Type | Description |
---|---|---|
messageTopic | FmsMessageKey | The Message Topic to send. |
Returns
void