Skip to main content

Class: ClockPublisher

Defined in: src/sdk/instruments/Clock.ts:52

A publisher of clock events.

Extends

Constructors

Constructor

new ClockPublisher(bus, pacer?): ClockPublisher

Defined in: src/sdk/instruments/Clock.ts:64

Creates a new instance of ClockPublisher.

Parameters

ParameterTypeDescription
busEventBusThe event bus.
pacer?PublishPacer<ClockEvents>An optional pacer to control the rate of publishing.

Returns

ClockPublisher

Overrides

BasePublisher.constructor

Properties

bus

protected readonly bus: EventBus

Defined in: src/sdk/instruments/BasePublishers.ts:10

Inherited from

BasePublisher.bus


pacer

protected readonly pacer: undefined | PublishPacer<ClockEvents>

Defined in: src/sdk/instruments/BasePublishers.ts:13

Inherited from

BasePublisher.pacer


publishActive

protected publishActive: boolean

Defined in: src/sdk/instruments/BasePublishers.ts:12

Inherited from

BasePublisher.publishActive


publisher

protected readonly publisher: Publisher<ClockEvents>

Defined in: src/sdk/instruments/BasePublishers.ts:11

Inherited from

BasePublisher.publisher

Methods

isPublishing()

isPublishing(): boolean

Defined in: src/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: src/sdk/instruments/Clock.ts:111

A callback called when the publisher receives an update cycle.

Returns

void

Overrides

BasePublisher.onUpdate


publish()

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

Defined in: src/sdk/instruments/BasePublishers.ts:63

Publish a message if publishing is acpive

Type Parameters

Type Parameter
K extends keyof ClockEvents

Parameters

ParameterTypeDefault valueDescription
topicKundefinedThe topic key to publish to.
dataClockEvents[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


startPublish()

startPublish(): void

Defined in: src/sdk/instruments/Clock.ts:88

Start publishing.

Returns

void

Overrides

BasePublisher.startPublish


stopPublish()

stopPublish(): void

Defined in: src/sdk/instruments/Clock.ts:99

Stop publishing.

Returns

void

Overrides

BasePublisher.stopPublish