Click or drag to resize
Akka.NETVersionVectorCompare Method
Compare two version vectors. The outcome will be one of the following:

Version 1 is SAME (==) as Version 2 iff for all i c1(i) == c2(i)

Version 1 is BEFORE (<) Version 2 iff for all i c1(i) <= c2(i) and there exist a j such that c1(j) < c2(j)

Version 1 is AFTER (>) Version 2 iff for all i c1(i) >= c2(i) and there exist a j such that c1(j) > c2(j)

Version 1 is CONCURRENT to Version 2 otherwise

Namespace:  Akka.DistributedData
Assembly:  Akka.DistributedData (in Akka.DistributedData.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public VersionVectorOrdering Compare(
	VersionVector other
)

Parameters

other
Type: Akka.DistributedDataVersionVector

[Missing <param name="other"/> documentation for "M:Akka.DistributedData.VersionVector.Compare(Akka.DistributedData.VersionVector)"]

Return Value

Type: VersionVectorOrdering

[Missing <returns> documentation for "M:Akka.DistributedData.VersionVector.Compare(Akka.DistributedData.VersionVector)"]

See Also