Packages

final case class Fetch(coid: ContractId, templateId: TypeConName, actingParties: Set[Party], signatories: Set[Party], stakeholders: Set[Party], key: Option[KeyWithMaintainers], byKey: Boolean, version: TransactionVersion) extends Action with LeafOnlyAction with ActionNodeInfo.Fetch with Product with Serializable

Denotes that the contract identifier coid needs to be active for the transaction to be valid.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Fetch
  2. Fetch
  3. LeafOnlyAction
  4. Action
  5. ActionNodeInfo
  6. Node
  7. CidContainer
  8. Serializable
  9. Product
  10. Equals
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Fetch(coid: ContractId, templateId: TypeConName, actingParties: Set[Party], signatories: Set[Party], stakeholders: Set[Party], key: Option[KeyWithMaintainers], byKey: Boolean, version: TransactionVersion)

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. val actingParties: Set[Party]
    Definition Classes
    FetchFetch
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val byKey: Boolean
    Definition Classes
    FetchAction
  7. def cids: Set[ContractId]
    Definition Classes
    CidContainer
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  9. val coid: ContractId
  10. def collectCids(acc: Set[ContractId]): Set[ContractId]
    Definition Classes
    CidContainer
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def foreachCid(f: (ContractId) => Unit): Unit
    Definition Classes
    CidContainer
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. final def informeesOfNode: Set[Party]

    Compute the informees of a node based on the ledger model definition.

    Compute the informees of a node based on the ledger model definition.

    Refer to https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#projections

    Definition Classes
    FetchActionNodeInfo
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val key: Option[KeyWithMaintainers]
  17. def mapCid(f: (ContractId) => ContractId): Fetch
    Definition Classes
    FetchCidContainer
  18. def mapNodeId(f: (NodeId) => NodeId): Node
    Definition Classes
    LeafOnlyActionNode
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. def optVersion: Option[TransactionVersion]
    Definition Classes
    Node
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. final def requiredAuthorizers: Set[Party]

    Required authorizers (see ledger model); UNSAFE TO USE on fetch nodes of transaction with versions < 5

    Required authorizers (see ledger model); UNSAFE TO USE on fetch nodes of transaction with versions < 5

    The ledger model defines the fetch node actingParties as the nodes' required authorizers. However, the our transaction data structure did not include the actingParties in versions < 5. The usage of this method must thus be restricted to: 1. settings where no fetch nodes appear (for example, the validate method of DAMLe, which uses it on root nodes, which are guaranteed never to contain a fetch node) 2. Daml ledger implementations that do not store or process any transactions with version < 5

    Definition Classes
    FetchActionNodeInfo
  25. final def self: Fetch.this.type
    Attributes
    protected
    Definition Classes
    ActionCidContainer
  26. val signatories: Set[Party]
    Definition Classes
    FetchFetch
  27. val stakeholders: Set[Party]
    Definition Classes
    FetchFetch
  28. final def suffixCid(f: (Hash) => Bytes): Either[String, Action]
    Definition Classes
    CidContainer
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. val templateId: TypeConName
    Definition Classes
    FetchAction
  31. def traverseCid[L](f: (ContractId) => Either[L, ContractId]): Either[L, Action]
    Definition Classes
    CidContainer
  32. val version: TransactionVersion
    Definition Classes
    FetchAction
  33. def versioned[X](x: X): Versioned[X]
    Attributes
    protected
    Definition Classes
    Action
  34. def versionedKey: Option[VersionedKeyWithMaintainers]
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. final def assertNoCid(message: (ContractId) => String): Action
    Definition Classes
    CidContainer
    Annotations
    @deprecated
    Deprecated

    (Since version 1.18.0) use foreachCid or cids method instead

  2. final def ensureNoCid: Either[ContractId, Action]
    Definition Classes
    CidContainer
    Annotations
    @deprecated
    Deprecated

    (Since version 1.18.0) use cids method instead

  3. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ActionNodeInfo.Fetch

Inherited from LeafOnlyAction

Inherited from Action

Inherited from ActionNodeInfo

Inherited from Node

Inherited from CidContainer[Action]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped