object TimeOfChange extends Serializable
- Alphabetic
- By Inheritance
- TimeOfChange
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(ts: CantonTimestamp): TimeOfChange
Builds a time of change in non-repair cases such as conflict detection/request tracking and timestamp-based boundaries such as pruning and ACS commitments.
- def apply(ts: CantonTimestamp, counterO: Option[RepairCounter]): TimeOfChange
Builds a time of change in non-repair cases such as conflict detection/request tracking and timestamp-based boundaries such as pruning and ACS commitments.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromSynchronizerIndex(synchronizerIndex: SynchronizerIndex): TimeOfChange
Helper to obtain TimeOfChange from the indexer synchronizer index using the maximum of the record time and the repair index.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- implicit val getResultTimeOfChange: GetResult[TimeOfChange]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def immediatePredecessor(tsUpToExclusive: CantonTimestamp): TimeOfChange
TimeOfChange that includes all the repairs up to the given timestamp exclusively.
TimeOfChange that includes all the repairs up to the given timestamp exclusively. Useful for obtaining ACS snapshots prior to the given timestamp.
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def negativeCounterToNone(ts: CantonTimestamp, counter: RepairCounter): TimeOfChange
Builds a time of change mapping negative repair counters to None for non-nullable db and conversion from AcsCommitmentProcessor RecordTime.
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- implicit val orderingTimeOfChange: Ordering[TimeOfChange]
- implicit val setParameterTimeOfChange: SetParameter[TimeOfChange]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withMinAsNoneRepairCounter[T](toc: TimeOfChange)(f: (CantonTimestamp, RepairCounter) => T): T
Helper to map a None repairCounter to RepairCounter.MinValue for non-nullable db persistence to reflect the fact that a non-repair request at a timestamp is ordered before repair requests with the same timestamp.