Click or drag to resize
Akka.NETGSetT Class
Implements a 'Add Set' CRDT, also called a 'G-Set'. You can't remove elements of a G-Set. It is described in the paper A comprehensive study of Convergent and Commutative Replicated Data Types. A G-Set doesn't accumulate any garbage apart from the elements themselves. This class is immutable, i.e. "modifying" methods return a new instance.
Inheritance Hierarchy
SystemObject
  Akka.DistributedDataFastMergeGSetT
    Akka.DistributedDataGSetT

Namespace:  Akka.DistributedData
Assembly:  Akka.DistributedData (in Akka.DistributedData.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
[SerializableAttribute]
public sealed class GSet<T> : FastMerge<GSet<T>>, 
	IReplicatedDataSerialization, IEquatable<GSet<T>>, IEnumerable<T>, IEnumerable

Type Parameters

T
TBD

The GSetT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
TBD
Public propertyElements
TBD
Public propertyIsEmpty
TBD
Top
Methods
  NameDescription
Public methodAdd
TBD
Protected methodAssignAncestor
INTERNAL API: should be called from "updating" methods
(Inherited from FastMergeT.)
Protected methodClearAncestor
INTERNAL API: should be called from merge
(Inherited from FastMergeT.)
Public methodContains
TBD
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(GSetT)
TBD
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodGetHashCode
Serves as the default hash function.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodIsAncestorOf
INTERNAL API: should be used from merge
(Inherited from FastMergeT.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMerge(GSetT)
TBD
(Overrides FastMergeTMerge(T).)
Public methodMerge(IReplicatedData)
TBD
(Inherited from FastMergeT.)
Public methodToString
Returns a string that represents the current object.
(Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldStatic memberEmpty
TBD
Top
Extension Methods
  NameDescription
Public Extension MethodAsInstanceOfT
TBD
(Defined by Extensions.)
Public Extension MethodConcatT
TBD
(Defined by Extensions.)
Public Extension MethodDropT
Scala alias for Skip
(Defined by Extensions.)
Public Extension MethodForEachT
Applies a delegate action to all elements of this enumerable.
(Defined by Extensions.)
Public Extension MethodGroupedT
Partitions elements in fixed size Credits to http://stackoverflow.com/a/13731854/465132
(Defined by EnumerableExtensions.)
Public Extension MethodHeadT
Scala alias for FirstOrDefault
(Defined by Extensions.)
Public Extension MethodIteratorT
TBD
(Defined by EnumeratorExtensions.)
Public Extension MethodMatchOverloaded.
Matches the specified target.
(Defined by PatternMatch.)
Public Extension MethodMatchTOverloaded.
Matches the specified target and return a result of target processing.
(Defined by PatternMatch.)
Public Extension MethodShouldBeT
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodShouldOnlyContainInOrderT
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodTakeRightT
Selects last n elements.
(Defined by Extensions.)
Top
See Also