AbstractDeltaReplicatedData

Java API: Interface for implementing a DeltaReplicatedData in Java.

The type parameter A is a self-recursive type to be defined by the concrete implementation. E.g. class TwoPhaseSet extends AbstractDeltaReplicatedData<TwoPhaseSet, TwoPhaseSet>

Source:
ReplicatedData.scala
class Object
trait Matchable
class Any

Type members

Types

override type D = ReplicatedDelta

Inherited types

override type T = ReplicatedData

Value members

Abstract methods

def deltaData: Optional[B]

The accumulated delta of mutator operations since previous resetDelta. When the Replicator invokes the modify function of the Update message and the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for the Replicator with the deltaData accessor. The modify function shall still return the full state in the same way as ReplicatedData without support for deltas.

The accumulated delta of mutator operations since previous resetDelta. When the Replicator invokes the modify function of the Update message and the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for the Replicator with the deltaData accessor. The modify function shall still return the full state in the same way as ReplicatedData without support for deltas.

Source:
ReplicatedData.scala
def mergeDeltaData(that: B): A

When delta is merged into the full state this method is used. When the type D of the delta is of the same type as the full state T this method can be implemented by delegating to mergeData.

When delta is merged into the full state this method is used. When the type D of the delta is of the same type as the full state T this method can be implemented by delegating to mergeData.

Source:
ReplicatedData.scala

Concrete methods

final override def delta: Option[ReplicatedDelta]

Delegates to deltaData, which must be implemented by subclass.

Delegates to deltaData, which must be implemented by subclass.

Definition Classes
Source:
ReplicatedData.scala
final override def mergeDelta(that: ReplicatedDelta): ReplicatedData

Delegates to mergeDeltaData, which must be implemented by subclass.

Delegates to mergeDeltaData, which must be implemented by subclass.

Definition Classes
Source:
ReplicatedData.scala

Inherited methods

final override def merge(that: ReplicatedData): ReplicatedData

Delegates to mergeData, which must be implemented by subclass.

Delegates to mergeData, which must be implemented by subclass.

Definition Classes
Inherited from:
AbstractReplicatedData
Source:
ReplicatedData.scala
def mergeData(that: A): A

Java API: Monotonic merge function.

Java API: Monotonic merge function.

Inherited from:
AbstractReplicatedData
Source:
ReplicatedData.scala

Reset collection of deltas from mutator operations. When the Replicator invokes the modify function of the Update message the delta is always "reset" and when the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for the Replicator with the delta accessor. When the Replicator has grabbed the delta it will invoke this method to get a clean data instance without the delta.

Reset collection of deltas from mutator operations. When the Replicator invokes the modify function of the Update message the delta is always "reset" and when the user code is invoking one or more mutator operations the data is collecting the delta of the operations and makes it available for the Replicator with the delta accessor. When the Replicator has grabbed the delta it will invoke this method to get a clean data instance without the delta.

Inherited from:
DeltaReplicatedData
Source:
ReplicatedData.scala