com.digitalasset.canton.participant.store
DomainConnectionConfigStore
Companion object DomainConnectionConfigStore
trait DomainConnectionConfigStore extends AnyRef
The configured domains and their connection configuration
- Alphabetic
- By Inheritance
- DomainConnectionConfigStore
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def get(alias: DomainAlias): Either[MissingConfigForAlias, DomainConnectionConfig]
Retrieves the config for a given alias.
Retrieves the config for a given alias. Will return an DomainConnectionConfigStore.MissingConfigForAlias error if there is no config for the alias.
- abstract def getAll(): Seq[DomainConnectionConfig]
Retrieves all configured domains connection configs
- abstract def put(config: DomainConnectionConfig)(implicit traceContext: TraceContext): EitherT[Future, AlreadyAddedForAlias, Unit]
Stores a domain connection config.
Stores a domain connection config. Primary identifier is the domain alias. Will return an DomainConnectionConfigStore.AlreadyAddedForAlias error if a config for that alias already exists.
- abstract def refreshCache()(implicit traceContext: TraceContext): Future[Unit]
Dump and refresh all connection configs.
Dump and refresh all connection configs. Used when a warm participant replica becomes active to ensure it has accurate configs cached.
- abstract def replace(config: DomainConnectionConfig)(implicit traceContext: TraceContext): EitherT[Future, MissingConfigForAlias, Unit]
Replaces the config for the given alias.
Replaces the config for the given alias. Will return an DomainConnectionConfigStore.MissingConfigForAlias error if there is no config for the alias.
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()
- 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])