WebcomNotificationEvent
public enum WebcomNotificationEvent : Equatable, CustomStringConvertible
A value representing an event sent with a remote notification.
-
Indicates that the value of the node has changed.
The associated value gives more details about the change.
Declaration
Swift
case valueChange(ValueChangeDetails)
-
Indicates that some children of the node have been updated.
The associated value gives more details about the update.
Declaration
Swift
case childrenUpdate(ChildrenUpdateDetails)
-
Indicates that the subscription was revoked by the back-end.
The associated value gives the reason of the revocation.
Declaration
Swift
case revocation(reason: RevocationReason)
-
A value representing the change of the value of a node.
See moreDeclaration
Swift
public enum ValueChangeDetails : Equatable, CustomStringConvertible
-
A value representing the update of the children of a node.
See moreDeclaration
Swift
public enum ChildrenUpdateDetails : Equatable, CustomStringConvertible
-
A value representing the keys and the values of the updated children of a node.
See moreDeclaration
Swift
public struct ChildrenUpdateFullDetails : Equatable, CustomStringConvertible
-
A value representing the keys of the updated children of a node.
See moreDeclaration
Swift
public struct ChildrenUpdateKeys : Equatable, CustomStringConvertible
-
A value indicating the reason of the revocation of a subscription.
See moreDeclaration
Swift
public enum RevocationReason : Equatable
-
Declaration
Swift
public var description: String { get }