Packages

class H2EventStorageBackend extends EventStorageBackendTemplate

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. H2EventStorageBackend
  2. EventStorageBackendTemplate
  3. NamedLogging
  4. EventStorageBackend
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new H2EventStorageBackend(ledgerEndCache: LedgerEndCache, stringInterning: StringInterning, parameterStorageBackend: ParameterStorageBackend, loggerFactory: NamedLoggerFactory)

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. def activeContractAssignEventBatch(eventSequentialIds: Iterable[Long], allFilterParties: Option[Set[Party]], endInclusive: Long)(connection: Connection): Vector[RawActiveContract]
  5. def activeContractCreateEventBatch(eventSequentialIds: Iterable[Long], allFilterParties: Option[Set[Party]], endInclusive: Long)(connection: Connection): Vector[RawActiveContract]
  6. def archivals(fromExclusive: Option[Offset], toInclusive: Offset)(connection: Connection): Set[daml.lf.value.Value.ContractId]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def assignEventBatch(eventSequentialIds: Iterable[Long], allFilterParties: Option[Set[Party]])(connection: Connection): Vector[Entry[RawAssignEvent]]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. implicit def errorLoggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  13. def eventReaderQueries: EventReaderQueries
  14. def fetchAssignEventIdsForStakeholder(stakeholderO: Option[Party], templateId: Option[Identifier], startExclusive: Long, endInclusive: Long, limit: Int)(connection: Connection): Vector[Long]
  15. def fetchEventPayloadsAcsDelta(target: EventPayloadSourceForUpdatesAcsDelta)(eventSequentialIds: Iterable[Long], requestingParties: Option[Set[daml.lf.data.Ref.Party]])(connection: Connection): Vector[Entry[RawFlatEvent]]
  16. def fetchEventPayloadsLedgerEffects(target: EventPayloadSourceForUpdatesLedgerEffects)(eventSequentialIds: Iterable[Long], requestingParties: Option[Set[daml.lf.data.Ref.Party]])(connection: Connection): Vector[Entry[RawTreeEvent]]
  17. def fetchTopologyPartyEventIds(party: Option[Party], startExclusive: Long, endInclusive: Long, limit: Int)(connection: Connection): Vector[Long]
  18. def fetchUnassignEventIdsForStakeholder(stakeholderO: Option[Party], templateId: Option[Identifier], startExclusive: Long, endInclusive: Long, limit: Int)(connection: Connection): Vector[Long]
  19. def firstSynchronizerOffsetAfterOrAt(synchronizerId: SynchronizerId, afterOrAtRecordTime: Timestamp)(connection: Connection): Option[SynchronizerOffset]
  20. def firstSynchronizerOffsetAfterOrAtPublicationTime(afterOrAtPublicationTime: Timestamp)(connection: Connection): Option[SynchronizerOffset]
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def lastSynchronizerOffsetBeforeOrAt(synchronizerIdO: Option[SynchronizerId], beforeOrAtOffset: Offset)(connection: Connection): Option[SynchronizerOffset]
  25. def lastSynchronizerOffsetBeforeOrAtPublicationTime(beforeOrAtPublicationTime: Timestamp)(connection: Connection): Option[SynchronizerOffset]
  26. def lastSynchronizerOffsetBeforeOrAtRecordTime(synchronizerId: SynchronizerId, beforeOrAtRecordTime: Timestamp)(connection: Connection): Option[SynchronizerOffset]
  27. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  28. val loggerFactory: NamedLoggerFactory
  29. def lookupAssignSequentialIdBy(unassignProperties: Iterable[UnassignProperties])(connection: Connection): Map[UnassignProperties, Long]
  30. def lookupAssignSequentialIdByOffset(offsets: Iterable[Long])(connection: Connection): Vector[Long]
  31. def lookupCreateSequentialIdByContractId(contractIds: Iterable[daml.lf.value.Value.ContractId])(connection: Connection): Vector[Long]
  32. def lookupUnassignSequentialIdByOffset(offsets: Iterable[Long])(connection: Connection): Vector[Long]
  33. def maxEventSequentialId(untilInclusiveOffset: Option[Offset])(connection: Connection): Long
  34. implicit def namedLoggingContext(implicit traceContext: TraceContext): NamedLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  39. def pruneEvents(pruneUpToInclusive: Offset, pruneAllDivulgedContracts: Boolean, incompleteReassignmentOffsets: Vector[Offset])(implicit connection: Connection, traceContext: TraceContext): Unit

    Deletes a subset of the indexed data (up to the pruning offset) in the following order and in the manner specified:

    Deletes a subset of the indexed data (up to the pruning offset) in the following order and in the manner specified:

    1. entries from filter for create stakeholders for there is an archive for the corresponding create event,
    2. entries from filter for create non-stakeholder informees for there is an archive for the corresponding create event,
    3. all entries from filter for consuming stakeholders,
    4. all entries from filter for consuming non-stakeholders informees,
    5. all entries from filter for non-consuming informees,
    6. create events table for which there is an archive event,
    7. if pruning-all-divulged-contracts is enabled: create contracts which did not have a locally hosted party before their creation offset (immediate divulgence),
    8. all consuming events,
    9. all non-consuming events,
    10. transaction meta entries for which there exists at least one create event.
    Definition Classes
    EventStorageBackendTemplateEventStorageBackend
  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def synchronizerOffset(offset: Offset)(connection: Connection): Option[SynchronizerOffset]
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. def topologyEventOffsetPublishedOnRecordTime(synchronizerId: SynchronizerId, recordTime: CantonTimestamp)(connection: Connection): Option[Offset]
  44. def topologyPartyEventBatch(eventSequentialIds: Iterable[Long])(connection: Connection): Vector[RawParticipantAuthorization]
  45. def unassignEventBatch(eventSequentialIds: Iterable[Long], allFilterParties: Option[Set[Party]])(connection: Connection): Vector[Entry[RawUnassignEvent]]
  46. def updatePointwiseQueries: UpdatePointwiseQueries
  47. def updateStreamingQueries: UpdateStreamingQueries
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  50. 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 NamedLogging

Inherited from EventStorageBackend

Inherited from AnyRef

Inherited from Any

Ungrouped