Packages

trait ParticipantSettingsStore extends ParticipantSettingsLookup with AutoCloseable

Stores misc settings for a participant. Allows clients to read settings without accessing the database. In turn, a client needs to call refreshCache before reading settings.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParticipantSettingsStore
  2. AutoCloseable
  3. ParticipantSettingsLookup
  4. AnyRef
  5. 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. abstract def insertMaxDeduplicationDuration(maxDeduplicationDuration: NonNegativeFiniteDuration)(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]

    Insert the given max deduplication duration provided unless a max deduplication duration has been set previously.

  3. abstract def insertUniqueContractKeysMode(uniqueContractKeys: Boolean)(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]

    Insert the setting for whether the participant provides unique-contract-key semantics.

  4. abstract def refreshCache()(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]
  5. abstract def writeResourceLimits(resourceLimits: ResourceLimits)(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]

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. val cache: AtomicReference[Option[Settings]]

    A cache for the max number of dirty requests.

    A cache for the max number of dirty requests. It is updated in the following situations: - Before and after a write (successful or not). - Through refreshCache. (Clients are requested to call refreshCache before reading any value.)

    Attributes
    protected
  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. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def settings: Settings

    returns

    the current settings

    Definition Classes
    ParticipantSettingsStoreParticipantSettingsLookup
    Exceptions thrown

    java.lang.IllegalStateException if ParticipantSettingsStore.refreshCache has not previously been run successfully

  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. 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
    Deprecated

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped