Packages

trait ParameterStorageBackend extends AnyRef

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

Abstract Value Members

  1. abstract def cleanSynchronizerIndex(synchronizerId: SynchronizerId)(connection: Connection): Option[SynchronizerIndex]

    The latest SynchronizerIndex for a synchronizerId until all events are processed fully and published to the Ledger API DB.

    The latest SynchronizerIndex for a synchronizerId until all events are processed fully and published to the Ledger API DB. The Update which from this SynchronizerIndex originate has smaller or equal offset than the current LedgerEnd: LedgerEnd and SynchronizerIndexes are persisted consistently in one transaction.

  2. abstract def initializeParameters(params: IdentityParams, loggerFactory: NamedLoggerFactory)(connection: Connection): Unit

    Initializes the parameters table and verifies or updates ledger identity parameters.

    Initializes the parameters table and verifies or updates ledger identity parameters. This method is idempotent:

    • If no identity parameters are stored, then they are set to the given value.
    • If identity parameters are stored, then they are compared to the given ones.
    • Ledger identity parameters are written at most once, and are never overwritten. No significant CPU load, mostly blocking JDBC communication with the database backend.

    This method is NOT safe to call concurrently.

  3. abstract def ledgerEnd(connection: Connection): Option[LedgerEnd]

    Query the current ledger end, read from the parameters table.

    Query the current ledger end, read from the parameters table. No significant CPU load, mostly blocking JDBC communication with the database backend.

    connection

    to be used to get the LedgerEnd

    returns

    the current LedgerEnd

  4. abstract def ledgerIdentity(connection: Connection): Option[IdentityParams]

    Returns the ledger identity parameters, or None if the database hasn't been initialized yet.

  5. abstract def participantAllDivulgedContractsPrunedUpToInclusive(connection: Connection): Option[Offset]
  6. abstract def postProcessingEnd(connection: Connection): Option[Offset]
  7. abstract def prunedUpToInclusive(connection: Connection): Option[Offset]
  8. abstract def prunedUpToInclusiveAndLedgerEnd(connection: Connection): PruneUptoInclusiveAndLedgerEnd
  9. abstract def updateLedgerEnd(ledgerEnd: LedgerEnd, lastSynchronizerIndex: Map[SynchronizerId, SynchronizerIndex] = Map.empty)(connection: Connection): Unit

    This method is used to update the new observable ledger end.

    This method is used to update the new observable ledger end. No significant CPU load, mostly blocking JDBC communication with the database backend.

    connection

    to be used when updating the parameters table

  10. abstract def updatePostProcessingEnd(postProcessingEnd: Option[Offset])(connection: Connection): Unit
  11. abstract def updatePrunedAllDivulgedContractsUpToInclusive(prunedUpToInclusive: Offset)(connection: Connection): Unit
  12. abstract def updatePrunedUptoInclusive(prunedUpToInclusive: Offset)(connection: Connection): Unit

    Part of pruning process, this needs to be in the same transaction as the other pruning related database operations

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  18. 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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped