deltaCompose method

  1. @override
Fugue<T> deltaCompose(
  1. Fugue<T> other
)
override

Composes two locally-produced Δ-state fragments. For most CRDT types this coincides with join. Override when the cross-replica join applies filters (tombstone semantics, max reduction) that would be wrong for in-replica delta accumulation.

Implementation

@override
Fugue<T> deltaCompose(Fugue<T> other) => join(other);