Interface IRemovedNodePruning<T>
IReplicatedData that has support for pruning of data
belonging to a specific node may implement this interface.
When a node is removed from the cluster these methods will be
used by the Akka.DistributedData.Replicator to collapse data from the removed node
into some other node in the cluster.
Assembly: Akka.DistributedData.dll
Syntax
public interface IRemovedNodePruning<T> : IRemovedNodePruning, IReplicatedData<T>, IReplicatedData where T : IReplicatedData
Type Parameters
Methods
|
Improve this Doc
View Source
Prune(UniqueAddress, UniqueAddress)
When the removedNode
node has been removed from the cluster the state
changes from that node will be pruned by collapsing the data entries
to another node.
Declaration
T Prune(UniqueAddress removedNode, UniqueAddress collapseInto)
Parameters
Returns
|
Improve this Doc
View Source
PruningCleanup(UniqueAddress)
Remove data entries from a node that has been removed from the cluster
and already been pruned.
Declaration
T PruningCleanup(UniqueAddress removedNode)
Parameters
Returns
Extension Methods