Skip to main content

Class: G1000ControlPublisher

A control publisher that handles G1000 events too.

Hierarchy

Constructors

constructor

new G1000ControlPublisher(bus): G1000ControlPublisher

Create a ControlPublisher.

Parameters

NameTypeDescription
busEventBusThe EventBus to publish to.

Returns

G1000ControlPublisher

Overrides

BasePublisher\<G1000ControlEvents\>.constructor

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/G1000Events.ts:92

Properties

bus

Protected Readonly bus: EventBus

Inherited from

BasePublisher.bus

Defined in

sdk/instruments/BasePublishers.ts:10


pacer

Protected Readonly pacer: undefined | PublishPacer<G1000ControlEvents>

Inherited from

BasePublisher.pacer

Defined in

sdk/instruments/BasePublishers.ts:13


publishActive

Protected publishActive: boolean

Inherited from

BasePublisher.publishActive

Defined in

sdk/instruments/BasePublishers.ts:12


publisher

Protected Readonly publisher: Publisher<G1000ControlEvents>

Inherited from

BasePublisher.publisher

Defined in

sdk/instruments/BasePublishers.ts:11

Methods

isPublishing

isPublishing(): boolean

Tells whether or not the publisher is currently active.

Returns

boolean

True if the publisher is active, false otherwise.

Inherited from

BasePublisher.isPublishing

Defined in

sdk/instruments/BasePublishers.ts:45


onUpdate

onUpdate(): void

A callback called when the publisher receives an update cycle.

Returns

void

Inherited from

BasePublisher.onUpdate

Defined in

sdk/instruments/BasePublishers.ts:52


publish

publish<K>(topic, data, sync?, isCached?): void

Publish a message if publishing is acpive

Type parameters

NameType
Kextends keyof G1000ControlEvents

Parameters

NameTypeDefault valueDescription
topicKundefinedThe topic key to publish to.
dataG1000ControlEvents[K]undefinedThe data type for chosen topic.
syncbooleanfalseWhether or not the event should be synced to other instruments. Defaults to false.
isCachedbooleantrueWhether or not the event should be cached. Defaults to true.

Returns

void

Inherited from

BasePublisher.publish

Defined in

sdk/instruments/BasePublishers.ts:63


publishEvent

publishEvent<K>(event, value): void

Publish a control event.

Type parameters

NameType
Kextends keyof G1000ControlEvents

Parameters

NameTypeDescription
eventKThe event from ControlEvents.
valueG1000ControlEvents[K]The value of the event.

Returns

void

Defined in

workingtitle-instruments-g1000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG1000/Shared/G1000Events.ts:101


startPublish

startPublish(): void

Start publishing.

Returns

void

Inherited from

BasePublisher.startPublish

Defined in

sdk/instruments/BasePublishers.ts:30


stopPublish

stopPublish(): void

Stop publishing.

Returns

void

Inherited from

BasePublisher.stopPublish

Defined in

sdk/instruments/BasePublishers.ts:37