Packages

c

com.digitalasset.canton.participant.store

ExtendedContractLookup

class ExtendedContractLookup extends ContractAndKeyLookup

A contract lookup that adds some convenience methods

Exceptions thrown

java.lang.IllegalArgumentException if contracts stores a contract under a wrong id

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtendedContractLookup
  2. ContractAndKeyLookup
  3. ContractLookup
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExtendedContractLookup(contracts: Map[LfContractId, GenContractInstance], keys: Map[LfGlobalKey, Option[LfContractId]])(implicit ec: ExecutionContext)

    contracts

    Contracts in this map take precedence over contracts in backingContractLookup

    Exceptions thrown

    java.lang.IllegalArgumentException if contracts stores a contract under a wrong id

Type Members

  1. type ContractsCreatedAtTime = CreationTime

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. implicit val ec: ExecutionContext
    Attributes
    protected
    Definition Classes
    ExtendedContractLookupContractLookup
  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
    @IntrinsicCandidate() @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def lookup(id: LfContractId)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, GenContractInstance { type InstCreatedAtTime <: com.digitalasset.daml.lf.transaction.CreationTime }]
  13. def lookupE(id: LfContractId)(implicit traceContext: TraceContext): EitherT[FutureUnlessShutdown, UnknownContract, GenContractInstance { type InstCreatedAtTime <: ExtendedContractLookup.this.ContractsCreatedAtTime }]
    Definition Classes
    ContractLookup
  14. def lookupFatContract(id: LfContractId)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, FatContractInstance { type CreatedAtTime <: ExtendedContractLookup.this.ContractsCreatedAtTime }]
    Definition Classes
    ContractLookup
  15. def lookupKey(key: LfGlobalKey)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, Option[LfContractId]]

    Find a contract with the given key.

    Find a contract with the given key. Typically used for Daml interpretation in Phase 3, where the key resolution is provided by the submitter. Returns scala.None$ if the key is not supposed to be resolved, e.g., during reinterpretation by Daml Engine. Returns scala.Some$(scala.None$) if no contract with the given key can be found.

    Definition Classes
    ExtendedContractLookupContractAndKeyLookup
  16. def lookupManyExistingUncached(ids: Seq[LfContractId])(implicit traceContext: TraceContext): EitherT[FutureUnlessShutdown, LfContractId, List[GenContractInstance { type InstCreatedAtTime <: ExtendedContractLookup.this.ContractsCreatedAtTime }]]
    Definition Classes
    ContractLookup
  17. def lookupManyUncached(ids: Seq[LfContractId])(implicit traceContext: TraceContext): FutureUnlessShutdown[List[Option[GenContractInstance { type InstCreatedAtTime <: ExtendedContractLookup.this.ContractsCreatedAtTime }]]]
    Definition Classes
    ContractLookup
  18. def lookupSignatories(ids: Set[LfContractId])(implicit traceContext: TraceContext): EitherT[FutureUnlessShutdown, UnknownContracts, Map[LfContractId, Set[LfPartyId]]]
  19. def lookupStakeholders(ids: Set[LfContractId])(implicit traceContext: TraceContext): EitherT[FutureUnlessShutdown, UnknownContracts, Map[LfContractId, Set[LfPartyId]]]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. 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 ContractAndKeyLookup

Inherited from ContractLookup

Inherited from AnyRef

Inherited from Any

Ungrouped