class Phase37Synchronizer extends NamedLogging

Synchronizes the request processing of phases 3 and 7. At the end of phase 3, every request must signal that it has reached com.digitalasset.canton.participant.protocol.RequestJournal.RequestState.Confirmed via the handle returned by registerRequest. At the beginning of phase 7, requests can wait on the completion of phase 3 via awaitConfirmed.

Eventually, all requests should either return a None or the corresponding data if it is the first valid request. After this point the request is cleaned from memory, otherwise, the synchronizer becomes a memory leak.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Phase37Synchronizer
  2. NamedLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Phase37Synchronizer(initRc: RequestCounter, loggerFactory: NamedLoggerFactory, futureSupervisor: FutureSupervisor)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def awaitConfirmed(requestType: RequestType)(requestId: RequestId, filter: (PendingRequestDataOrReplayData[PendingRequestData]) => Future[Boolean] = (_: PendingRequestDataOrReplayData[requestType.PendingRequestData]) => Future.successful(true))(implicit traceContext: TraceContext, ec: ExecutionContext): Future[RequestOutcome[PendingRequestData]]

    The returned future completes with either the pending request data, if it's the first valid call after the request has been registered and not marked as timed-out, or None otherwise.

    The returned future completes with either the pending request data, if it's the first valid call after the request has been registered and not marked as timed-out, or None otherwise. Please note that for each request only the first awaitConfirmed, where filter == true, completes with the pending request data even if the filters are different.

    requestId

    The request id (timestamp) of the request to synchronize.

    filter

    A function that returns if a request is either valid or not (e.g. contains a valid signature). This filter can be different for each call of awaitConfirmed, but only the first valid filter will complete with the pending request data.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. implicit def errorLoggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  14. val loggerFactory: NamedLoggerFactory
    Definition Classes
    Phase37SynchronizerNamedLogging
  15. implicit def namedLoggingContext(implicit traceContext: TraceContext): NamedLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def registerRequest(requestType: RequestType)(requestId: RequestId)(implicit traceContext: TraceContext, ec: ExecutionContext): PendingRequestDataHandle[PendingRequestData]

    Register a request in 'pendingRequests' and returns an handle that can be used to complete the underlying request promise with its corresponding data or None if it's a timeout.

    Register a request in 'pendingRequests' and returns an handle that can be used to complete the underlying request promise with its corresponding data or None if it's a timeout. It initializes the future, to chain the evaluations, to handle.future.

    requestId

    The request id (timestamp) of the request to register.

    returns

    The promise handle.

    Exceptions thrown

    • If the request has already been registered
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from NamedLogging

Inherited from AnyRef

Inherited from Any

Ungrouped