Packages

package platform

Type aliases used throughout the package

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

Package Members

  1. package apiserver
  2. package config
  3. package index
  4. package indexer
  5. package packages
  6. package store

Type Members

  1. class DispatcherState extends NamedLogging

    Life-cycle manager for the Ledger API streams offset dispatcher.

  2. class InMemoryState extends NamedLogging

    Wrapper and life-cycle manager for the in-memory Ledger API state.

  3. final case class InternalEventFormat(templatePartiesFilter: TemplatePartiesFilter, eventProjectionProperties: EventProjectionProperties) extends Product with Serializable
  4. final case class InternalTransactionFormat(internalEventFormat: InternalEventFormat, transactionShape: TransactionShape) extends Product with Serializable
  5. final case class InternalUpdateFormat(includeTransactions: Option[InternalTransactionFormat], includeReassignments: Option[InternalEventFormat], includeTopologyEvents: Option[TopologyFormat]) extends Product with Serializable
  6. class PackagePreferenceBackend extends NamedLogging
  7. abstract class ResourceCloseable extends FlagCloseableAsync with NamedLogging

    This helper class serves as a bridge between FlagCloseable (canton's shutdown/resource manager trait) and Resource (daml's shutdown/resource management container).

    This helper class serves as a bridge between FlagCloseable (canton's shutdown/resource manager trait) and Resource (daml's shutdown/resource management container). Recommended usage:

    1. The service class needs to be prepared with subclassing the ResourceCloseable.
    2. As the service instance is created, the ResourceOwnerFlagCloseableOps should be used to instantiate a FlagCloseable with the ResourceOwner[ServiceClass].acquireFlagCloseable.
    3. The resulting ServiceClass instance can be used as FlagCloseable: as it is getting closed, the wrapped Resource will be released.
    Annotations
    @SuppressWarnings()
  8. implicit final class ResourceOwnerFlagCloseableOps[T <: ResourceCloseable] extends AnyVal
  9. implicit final class ResourceOwnerOps[T] extends AnyVal
  10. final case class TemplatePartiesFilter(relation: Map[Identifier, Option[Set[Party]]], templateWildcardParties: Option[Set[Party]]) extends Product with Serializable

    This class represents the filters used in transactions and contracts fetching based on the templates or interfaces they implement and the parties included.

    This class represents the filters used in transactions and contracts fetching based on the templates or interfaces they implement and the parties included.

    relation

    holds the per template filters, if the value of a specific key (identifier) is defined then the filter corresponds only to the specific set of parties, if None then all the parties known to the participant are included

    templateWildcardParties

    represents all the templates (template-wildcard) for the set of parties specified if defined or all the parties known to the participant if None.

Inherited from AnyRef

Inherited from Any

Ungrouped