Packages

trait MultiDomainCausalityStore extends AutoCloseable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MultiDomainCausalityStore
  2. AutoCloseable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    AutoCloseable
    Annotations
    @throws(classOf[java.lang.Exception])
  2. implicit abstract val ec: ExecutionContext
  3. abstract def loadTransferOutStateFromPersistentStore(transferId: TransferId, parties: Set[LfPartyId])(implicit tc: TraceContext): Future[Option[Map[LfPartyId, VectorClock]]]

    * Load the causal state at a transfer-out into memory.

    * Load the causal state at a transfer-out into memory.

    returns

    Whether the causal state for the transfer-out was found.

    Attributes
    protected
  4. abstract def persistCausalityMessageState(id: TransferId, vectorClocks: List[VectorClock])(implicit tc: TraceContext): Future[Unit]

    Write the causal state from a causality message to a persistent store

    Write the causal state from a causality message to a persistent store

    Attributes
    protected

Concrete 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 awaitTransferOutRegistered(id: TransferId, parties: Set[LfPartyId])(implicit tc: TraceContext): Future[Map[LfPartyId, VectorClock]]
  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. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. val highestSeen: TrieMap[DomainId, CantonTimestamp]

    The map from domains to the highest timestamp that has been published on that domain

    The map from domains to the highest timestamp that has been published on that domain

    Annotations
    @VisibleForTesting()
  12. def highestSeenOn(domain: DomainId): Option[CantonTimestamp]
  13. def inspectTransferStoreForTesting(id: TransferId): Option[Map[LfPartyId, VectorClock]]
    Annotations
    @VisibleForTesting()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def registerCausalityMessages(causalityMessages: List[CausalityMessage])(implicit tc: TraceContext): Future[Unit]

    Register causality messages corresponding to transfer-out events on unconnected domains

  19. def registerSeen(domain: DomainId, timestamp: CantonTimestamp): Unit
  20. def registerTransferOut(id: TransferId, vectorClocks: Set[VectorClock])(implicit tc: TraceContext): Unit

    Register that a transfer-out has completed with the provided causal state.

    Register that a transfer-out has completed with the provided causal state. This unblocks the corresponding transfer-in.

  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. val transferOutPromises: TrieMap[TransferId, Promise[Unit]]
    Attributes
    protected
  24. val transferStore: TrieMap[TransferId, Map[LfPartyId, VectorClock]]
    Attributes
    protected
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. 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 AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped