t

akka.cluster.ddata

ReplicatedDelta

trait ReplicatedDelta extends ReplicatedData

The delta must implement this type.

Source
ReplicatedData.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplicatedDelta
  2. ReplicatedData
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type T <: ReplicatedData

    The type of the concrete implementation, e.g.

    The type of the concrete implementation, e.g. GSet[A]. To be specified by subclass.

    Definition Classes
    ReplicatedData

Abstract Value Members

  1. abstract def merge(that: T): T

    Monotonic merge function.

    Monotonic merge function.

    Definition Classes
    ReplicatedData
  2. abstract def zero: DeltaReplicatedData

    The empty full state.

    The empty full state. This is used when a delta is received and no existing full state exists on the receiving side. Then the delta is merged into the zero to create the initial full state.