ChildEvent

data class ChildEvent : Event

Notification of a subscribed Child event type to a callback function (previously passed to one of the DatasyncNode.subscribe methods).

Types

Trigger
Link copied to clipboard
enum Trigger : Enum<ChildEvent.Trigger>
Represents the kind of child event that triggers a notification.

Properties

dataAcknowledged
Link copied to clipboard
open override val dataAcknowledged: Boolean
Is the value of the data node acknowledged by the back end?
isAcknowledgement
Link copied to clipboard
open override val isAcknowledgement: Boolean
This notification Event only reports a value acknowledgement without change.
node
Link copied to clipboard
open override val node: DatasyncNode
The child node of the watched data node, which the notification relates to.
subscription
Link copied to clipboard
open override val subscription: Subscription
The Subscription instance that sends this notification Event.
trigger
Link copied to clipboard
val trigger: ChildEvent.Trigger
Kind of child event that triggered the notification.
value
Link copied to clipboard
val value: DatasyncValuable
The value of the child node of the watched data node, which the notification relates to.