com.rbmhtechnology.eventuate

VectorTime

case class VectorTime(value: Map[String, Long] = Map.empty) extends Product with Serializable

Vector time, represented as process id -> logical time map.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VectorTime
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VectorTime(value: Map[String, Long] = Map.empty)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def <(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is less than that (= this happened before that).

  4. def <=(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is less than or equal to that.

  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. def >(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is greater than that (= that happened before this).

  7. def >=(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is greater than or equal to that.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def conc(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is concurrent to that.

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equiv(that: VectorTime)(implicit ordering: PartialOrdering[VectorTime]): Boolean

    Returns true if this vector time is equivalent (equal) to that.

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def increase(processId: String): VectorTime

    Increases local time of given processId by 1L.

  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def localCopy(processId: String): VectorTime

    Returns the local time of processId represented as vector time.

  18. def localTime(processId: String): Long

    Returns the local time of processId.

  19. def merge(that: VectorTime): VectorTime

    Merges this vector time with that by taking the max of the corresponding local times.

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    VectorTime → AnyRef → Any
  25. val value: Map[String, Long]

  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped