final case class DynamicSynchronizerParametersWithValidity(parameters: DynamicSynchronizerParameters, validFrom: CantonTimestamp, validUntil: Option[CantonTimestamp], synchronizerId: SynchronizerId) extends Product with Serializable
Dynamic synchronizer parameters and their validity interval. Mostly so that we can perform additional checks.
- validFrom
Start point of the validity interval (exclusive)
- validUntil
End point of the validity interval (inclusive)
- Alphabetic
- By Inheritance
- DynamicSynchronizerParametersWithValidity
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DynamicSynchronizerParametersWithValidity(parameters: DynamicSynchronizerParameters, validFrom: CantonTimestamp, validUntil: Option[CantonTimestamp], synchronizerId: SynchronizerId)
- validFrom
Start point of the validity interval (exclusive)
- validUntil
End point of the validity interval (inclusive)
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def assignmentExclusivityLimitFor(baseline: CantonTimestamp): Either[String, CantonTimestamp]
- def assignmentExclusivityTimeout: NonNegativeFiniteDuration
- def automaticAssignmentEnabled: Boolean
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def decisionTimeFor(activenessTime: CantonTimestamp): Either[String, CantonTimestamp]
Computes the decision time for the given activeness time.
Computes the decision time for the given activeness time.
- returns
Left if the synchronizer parameters are not valid at
activenessTime
, the decision time otherwise
- def decisionTimeForF(activenessTime: CantonTimestamp): FutureUnlessShutdown[CantonTimestamp]
Computes the decision time for the given activeness time.
Computes the decision time for the given activeness time.
- returns
Left if the synchronizer parameters are not valid at
activenessTime
, the decision time otherwise
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isValidAt(ts: CantonTimestamp): Boolean
- def map[T](f: (DynamicSynchronizerParameters) => T): WithValidity[T]
- def mediatorDeduplicationTimeout: NonNegativeFiniteDuration
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- val parameters: DynamicSynchronizerParameters
- def participantResponseDeadlineFor(timestamp: CantonTimestamp): Either[String, CantonTimestamp]
Computes the participant response time for the given timestamp.
Computes the participant response time for the given timestamp.
- returns
Left if the synchronizer parameters are not valid at
timestamp
.
- def participantResponseDeadlineForF(timestamp: CantonTimestamp): Future[CantonTimestamp]
Computes the participant response time for the given timestamp.
Computes the participant response time for the given timestamp.
- Exceptions thrown
java.lang.IllegalStateException
if the synchronizer parameters are not valid attimestamp
.
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def sequencerTopologyTimestampTolerance: NonNegativeFiniteDuration
- def submissionCostTimestampTopologyTolerance: NonNegativeFiniteDuration
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val synchronizerId: SynchronizerId
- def topologyChangeDelay: NonNegativeFiniteDuration
- val validFrom: CantonTimestamp
- val validUntil: Option[CantonTimestamp]
- 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])