class GrpcInspectionService extends InspectionService

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GrpcInspectionService
  2. InspectionService
  3. AbstractService
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GrpcInspectionService(syncStateInspection: SyncStateInspection, aliasManager: DomainAliasManager)(implicit executionContext: ExecutionContext)

Value Members

  1. def countInFlight(request: Request): Future[Response]

    Count in-flight submissions and transactions for a domain

    Count in-flight submissions and transactions for a domain

    Definition Classes
    GrpcInspectionServiceInspectionService
  2. def lookupContractDomain(request: Request): Future[Response]

    Lookup the domain where a contract is currently active.

    Lookup the domain where a contract is currently active. Supports querying many contracts at once.

    Definition Classes
    GrpcInspectionServiceInspectionService
  3. def lookupOffsetByIndex(request: Request): Future[Response]

    Look up the ledger offset by an index, e.g.

    Look up the ledger offset by an index, e.g. 1 returns the first offset, 2 the second, etc.

    Definition Classes
    GrpcInspectionServiceInspectionService
  4. def lookupOffsetByTime(request: Request): Future[Response]

    Look up the ledger offset corresponding to the timestamp, specifically the largest offset such that no later offset corresponds to a later timestamp than the specified one.

    Look up the ledger offset corresponding to the timestamp, specifically the largest offset such that no later offset corresponds to a later timestamp than the specified one.

    Definition Classes
    GrpcInspectionServiceInspectionService
  5. def lookupTransactionDomain(request: Request): Future[Response]

    Lookup the domain that the transaction was committed over.

    Lookup the domain that the transaction was committed over. Can fail with NOT_FOUND if no domain was found.

    Definition Classes
    GrpcInspectionServiceInspectionService
  6. def serviceCompanion: ServiceCompanion[InspectionService]
    Definition Classes
    InspectionService → AbstractService