Value

interface Value : SubscribableEvent

Represents an event raised when the value of a watched data node is updated, to be received by a callback function (previously passed to the Subscriber.subscribe method).

Types

Changed
Link copied to clipboard
interface Changed : SubscribableEvent.Value

The Value event that additionally emits the new value of the watched data node when raised.

ChangedHidingData
Link copied to clipboard
interface ChangedHidingData : SubscribableEvent.Value

The Value event that doesn't emit the value of the watched data node when raised.

Properties

isAcknowledgement
Link copied to clipboard
abstract val isAcknowledgement: Boolean

The notification of this SubscribableEvent only reports a value acknowledgement without change.

node
Link copied to clipboard
abstract val node: DatasyncNode

The data node watched by the notifying subscription.

subscription
Link copied to clipboard
abstract val subscription: Subscription

The Subscription instance that notifies this instance of SubscribableEvent.

Inheritors

SubscribableEvent.Value
Link copied to clipboard
SubscribableEvent.Value
Link copied to clipboard