DeltaCRDT

fun DeltaCRDT()

Default delta constructor

Create an empty CRDT. A CRDT without associated environment should be considered as a delta only: It won't allow any updating operation and may not support reading operations.

fun DeltaCRDT(env: Environment?)

Default CRDT constructor

Create an empty CRDT, associated with the given environment.

Parameters

env

the current environment. Passing null will create a CRDT with uninitialized environment (aka delta) : It won't allow any updating operation and may not support reading operations.