Uses of Class
org.sdnplatform.sync.IVersion.Occurred

Packages that use IVersion.Occurred
org.sdnplatform.sync   
org.sdnplatform.sync.internal.version   
 

Uses of IVersion.Occurred in org.sdnplatform.sync
 

Methods in org.sdnplatform.sync that return IVersion.Occurred
 IVersion.Occurred IVersion.compare(IVersion v)
          Return whether or not the given version preceeded this one, succeeded it, or is concurrant with it
static IVersion.Occurred IVersion.Occurred.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IVersion.Occurred[] IVersion.Occurred.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of IVersion.Occurred in org.sdnplatform.sync.internal.version
 

Methods in org.sdnplatform.sync.internal.version that return IVersion.Occurred
 IVersion.Occurred VectorClock.compare(IVersion v)
           
static IVersion.Occurred VectorClock.compare(VectorClock v1, VectorClock v2)
          Is this Reflexive, AntiSymetic, and Transitive? Compare two VectorClocks, the outcomes will be one of the following: -- Clock 1 is BEFORE clock 2 if there exists an i such that c1(i) <= c(2) and there does not exist a j such that c1(j) > c2(j).