class SortedReconciliationIntervalsProvider extends NamedLogging
- Alphabetic
- By Inheritance
- SortedReconciliationIntervalsProvider
- NamedLogging
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new SortedReconciliationIntervalsProvider(topologyClient: SynchronizerTopologyClient, futureSupervisor: FutureSupervisor, loggerFactory: NamedLoggerFactory)(implicit ec: ExecutionContext)
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 clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def computeReconciliationIntervalsCovering(fromExclusive: CantonTimestamp, toInclusive: CantonTimestamp)(implicit traceContext: TraceContext): FutureUnlessShutdown[List[CommitmentPeriod]]
Computes a list of commitment periods between
fromExclusive
totoInclusive
.Computes a list of commitment periods between
fromExclusive
totoInclusive
. The caller should ensure thatfromExclusive
andtoInclusive
represent valid reconciliation ticks. Otherwise, the method throws anInvalidParameterException
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit def errorLoggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
- Attributes
- protected
- Definition Classes
- NamedLogging
- def getApproximateLatestReconciliationInterval: Option[ReconciliationInterval]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def logger: TracedLogger
- Attributes
- protected
- Definition Classes
- NamedLogging
- val loggerFactory: NamedLoggerFactory
- Attributes
- protected
- Definition Classes
- SortedReconciliationIntervalsProvider → NamedLogging
- implicit def namedLoggingContext(implicit traceContext: TraceContext): NamedLoggingContext
- Attributes
- protected
- Definition Classes
- NamedLogging
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def noTracingLogger: Logger
- Attributes
- protected
- Definition Classes
- NamedLogging
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def reconciliationIntervals(validAt: CantonTimestamp)(implicit traceContext: TraceContext): FutureUnlessShutdown[SortedReconciliationIntervals]
- def splitCommitmentPeriod(commitmentPeriod: CommitmentPeriod)(implicit traceContext: TraceContext): FutureUnlessShutdown[Option[NonEmpty[Set[CommitmentPeriod]]]]
splits a given CommitmentPeriod into a NonEmpty Set of CommitmentPeriods with ValidTicks.
splits a given CommitmentPeriod into a NonEmpty Set of CommitmentPeriods with ValidTicks. if the given period does not have any valid periods within it then None is returned.
if given period( from = 0, to = 100) and we have one reconciliationInterval of 5 then it will return a NonEmpty set with 20 periods (0 -> 5, 5 -> 10, 10 -> 15 etc.)
if multiple reconciliation intervals exists then it gets split correctly as well.
if given period( from = 0, to 100) and we have two reconciliationIntervals (5 at 0 and 10 at 30) then it will return a NonEmpty set with 6 + 7 periods (0 -> 5, 5 -> 10, 10 -> 15 [...] 30 -> 40, 40 -> 50, 50 -> 60 etc.)
- 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])