Class: WT21ControlPublisher
Defined in: workingtitle-instruments-wt21/shared/WT21ControlEvents.ts:59
A control publisher that handles WT21 events too.
Extends
BasePublisher
<WT21ControlEvents
>
Constructors
Constructor
new WT21ControlPublisher(
bus
):WT21ControlPublisher
Defined in: workingtitle-instruments-wt21/shared/WT21ControlEvents.ts:64
Create a ControlPublisher.
Parameters
Parameter | Type | Description |
---|---|---|
bus | EventBus | The EventBus to publish to. |
Returns
WT21ControlPublisher
Overrides
BasePublisher<WT21ControlEvents>.constructor
Properties
bus
protected
readonly
bus:EventBus
Defined in: sdk/instruments/BasePublishers.ts:10
Inherited from
BasePublisher.bus
pacer
protected
readonly
pacer:undefined
|PublishPacer
<WT21ControlEvents
>
Defined in: sdk/instruments/BasePublishers.ts:13
Inherited from
BasePublisher.pacer
publishActive
protected
publishActive:boolean
Defined in: sdk/instruments/BasePublishers.ts:12
Inherited from
BasePublisher.publishActive
publisher
protected
readonly
publisher:Publisher
<WT21ControlEvents
>
Defined in: sdk/instruments/BasePublishers.ts:11
Inherited from
BasePublisher.publisher
Methods
isPublishing()
isPublishing():
boolean
Defined in: sdk/instruments/BasePublishers.ts:45
Tells whether or not the publisher is currently active.
Returns
boolean
True if the publisher is active, false otherwise.
Inherited from
BasePublisher.isPublishing
onUpdate()
onUpdate():
void
Defined in: sdk/instruments/BasePublishers.ts:52
A callback called when the publisher receives an update cycle.
Returns
void
Inherited from
BasePublisher.onUpdate
publish()
protected
publish<K
>(topic
,data
,sync
,isCached
):void
Defined in: sdk/instruments/BasePublishers.ts:63
Publish a message if publishing is acpive
Type Parameters
Type Parameter |
---|
K extends keyof WT21ControlEvents |
Parameters
Parameter | Type | Default value | Description |
---|---|---|---|
topic | K | undefined | The topic key to publish to. |
data | WT21ControlEvents [K ] | undefined | The data type for chosen topic. |
sync | boolean | false | Whether or not the event should be synced to other instruments. Defaults to false . |
isCached | boolean | true | Whether or not the event should be cached. Defaults to true . |
Returns
void
Inherited from
BasePublisher.publish
publishEvent()
publishEvent<
K
>(event
,value
):void
Defined in: workingtitle-instruments-wt21/shared/WT21ControlEvents.ts:73
Publish a control event.
Type Parameters
Type Parameter |
---|
K extends keyof WT21ControlEvents |
Parameters
Parameter | Type | Description |
---|---|---|
event | K | The event from ControlEvents. |
value | WT21ControlEvents [K ] | The value of the event. |
Returns
void
startPublish()
startPublish():
void
Defined in: sdk/instruments/BasePublishers.ts:30
Start publishing.
Returns
void
Inherited from
BasePublisher.startPublish
stopPublish()
stopPublish():
void
Defined in: sdk/instruments/BasePublishers.ts:37
Stop publishing.
Returns
void
Inherited from
BasePublisher.stopPublish