Notification

interface Notification<out T : Notifiable>

Base interface for passing an event of type T to a callback function.

Types

Link copied to clipboard
interface ControlNotification : Notification<Nothing>

Represents a notification that reports a control event about the associated subscription.

Link copied to clipboard
interface DataNotification<out T : Notifiable> : Notification<T>

Represents a notification that conveys some business data.

Properties

Link copied to clipboard
abstract val appId: String

Identifier of the WebcomApplication this Notification relates to.

Link copied to clipboard
abstract val path: String

Path of the data this Notification relates to, or "" if it doesn't relate to any data node.

Inheritors

Link copied to clipboard
Link copied to clipboard