Webcom Android SDK Public API Reference / com.orange.webcom.sdkv2.datasync / Child

Child

open class Child : Type

Represents the type of events raised when something happens to some child of a data node.

Subclasses of the Child event type may be combined using the Child.plus and Child.minus operators to watch several elementary events at once.

Types

Addition

object Addition : Child

Events of the Child type that are raised when a new child is added to a data node.

Change

object Change : Child

Events of the Child type that are raised when the value of a child of a data node changes.

Removal

object Removal : Child

Events of the Child type that are raised when a child is removed from a data node.

Functions

minus

operator fun minus(other: Child): Child

Subtracts a Child event type from another Child event type.

plus

operator fun plus(other: Child): Child

Adds two Child event types.

Inheritors

Addition

object Addition : Child

Events of the Child type that are raised when a new child is added to a data node.

Change

object Change : Child

Events of the Child type that are raised when the value of a child of a data node changes.

Removal

object Removal : Child

Events of the Child type that are raised when a child is removed from a data node.