t
com.digitalasset.canton.participant.store
SingleDomainCausalDependencyStore
Companion object SingleDomainCausalDependencyStore
trait SingleDomainCausalDependencyStore extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- SingleDomainCausalDependencyStore
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract val domainId: DomainId
- implicit abstract def ec: ExecutionContext
- abstract def initialize(lastIncluded: Option[RequestCounter])(implicit tc: TraceContext): Future[Unit]
- abstract val initialized: Future[Unit]
Synchronization to ensure the
state
has been recovered before we use this class.Synchronization to ensure the
state
has been recovered before we use this class.- Attributes
- protected
- abstract def logger: TracedLogger
- Attributes
- protected
- abstract def persistentInsert(rc: RequestCounter, ts: CantonTimestamp, deps: Map[LfPartyId, Map[DomainId, CantonTimestamp]], transferOutId: Option[TransferId])(implicit tc: TraceContext): Future[Unit]
- Attributes
- protected
- abstract def state: DomainPerPartyCausalState
- Attributes
- protected
Concrete 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]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def snapshotStateForTesting: Map[LfPartyId, Map[DomainId, CantonTimestamp]]
- Annotations
- @VisibleForTesting()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def updateStateAndStore(rc: RequestCounter, ts: CantonTimestamp, clocks: Map[LfPartyId, Map[DomainId, CantonTimestamp]], transferOutId: Option[TransferId])(implicit tc: TraceContext): Future[CausalityWrite]
Synchronously update the in-memory state with the new causal dependencies specified by
clocks
.Synchronously update the in-memory state with the new causal dependencies specified by
clocks
. Persist the change to the causality state asynchronously.This should not be called concurrently; the caller must wait for each returned future to complete before making another call.
- returns
A future that completes when the new causality state has been persisted.
- 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])