Interface IDeltaReplicatedData
IReplicatedData with additional support for delta-CRDT replication.
delta-CRDT is a way to reduce the need for sending the full state
for updates. For example adding element 'c' and 'd' to set {'a', 'b'} would
result in sending the delta {'c', 'd'} and merge that with the state on the
receiving side, resulting in set {'a', 'b', 'c', 'd'}.
Learn more about this in the paper
Delta State Replicated Data Types.
Assembly: Akka.DistributedData.dll
Syntax
public interface IDeltaReplicatedData : IReplicatedData
Properties
|
Improve this Doc
View Source
Delta
Declaration
IReplicatedDelta Delta { get; }
Property Value
Methods
|
Improve this Doc
View Source
MergeDelta(IReplicatedDelta)
Declaration
IReplicatedData MergeDelta(IReplicatedDelta delta)
Parameters
Returns
|
Improve this Doc
View Source
ResetDelta()
Declaration
IReplicatedData ResetDelta()
Returns
Extension Methods