c

com.daml.lf.engine

ExerciseEvent

final case class ExerciseEvent(contractId: ContractId, templateId: Identifier, choice: ChoiceName, choiceArgument: Value, actingParties: Set[Party], isConsuming: Boolean, children: ImmArray[NodeId], stakeholders: Set[Party], witnesses: Set[Party], exerciseResult: Option[Value]) extends Event with Product with Serializable

Event for exercises

contractId

contract id for the target contract

templateId

identifier of the exercised contract template

choice

choice exercised

choiceArgument

arguments given to the choice

actingParties

parties acting in the exercise

isConsuming

marks if this exercise archived the target contract

children

consequence events. note that they're paired with the NodeId of the transaction that originated the event.

stakeholders

the stakeholders of the target contract -- must be a subset of witnesses.

witnesses

additional witnesses induced by parent exercises

exerciseResult

result of exercise of the choice. Optional since this feature was introduced in transaction version 6.

Linear Supertypes
Event, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExerciseEvent
  2. Event
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExerciseEvent(contractId: ContractId, templateId: Identifier, choice: ChoiceName, choiceArgument: Value, actingParties: Set[Party], isConsuming: Boolean, children: ImmArray[NodeId], stakeholders: Set[Party], witnesses: Set[Party], exerciseResult: Option[Value])

    contractId

    contract id for the target contract

    templateId

    identifier of the exercised contract template

    choice

    choice exercised

    choiceArgument

    arguments given to the choice

    actingParties

    parties acting in the exercise

    isConsuming

    marks if this exercise archived the target contract

    children

    consequence events. note that they're paired with the NodeId of the transaction that originated the event.

    stakeholders

    the stakeholders of the target contract -- must be a subset of witnesses.

    witnesses

    additional witnesses induced by parent exercises

    exerciseResult

    result of exercise of the choice. Optional since this feature was introduced in transaction version 6.

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]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val children: ImmArray[NodeId]
  7. val choice: ChoiceName
  8. val choiceArgument: Value
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. val contractId: ContractId
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. val exerciseResult: Option[Value]
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. val isConsuming: Boolean
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. def productElementNames: Iterator[String]
    Definition Classes
    Product
  20. val stakeholders: Set[Party]
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. val templateId: Identifier
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. val witnesses: Set[Party]
    Definition Classes
    ExerciseEventEvent

Deprecated Value Members

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

Inherited from Event

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped