| VectorClockCompareTo Method |
Compares the current vector clock with the supplied vector clock. The outcome will be one of the following:
- Clock 1 is SAME(==) as Clock 2 iff for all i c1(i) == c2(i)
- Clock 1 is BEFORE(<) Clock 2 iff for all i c1(i) <= c2(i) and there exist a j such that c1(j) < c2(j)
- Clock 1 is AFTER(>) Clock 2 iff for all i c1(i) >= c2(i) and there exist a j such that c1(j) > c2(j).
- Clock 1 is CONCURRENT(<>) to Clock 2 otherwise.
Namespace:
Akka.Cluster
Assembly:
Akka.Cluster (in Akka.Cluster.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public VectorClockOrdering CompareTo(
VectorClock that
)
member CompareTo :
that : VectorClock -> VectorClockOrdering
Parameters
- that
- Type: Akka.ClusterVectorClock
The vector clock used to compare against.
Return Value
Type:
VectorClockOrderingTBD
See Also