object Node extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Node
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed abstract class Action extends Node with CidContainer[Action]

    action nodes parametrized over identifier type

  2. final case class Create(coid: ContractId, templateId: TypeConName, arg: Value, agreementText: String, signatories: Set[Party], stakeholders: Set[Party], keyOpt: Option[GlobalKeyWithMaintainers], version: TransactionVersion) extends Action with LeafOnlyAction with Product with Serializable

    Denotes the creation of a contract instance.

  3. final case class Exercise(targetCoid: ContractId, templateId: TypeConName, interfaceId: Option[TypeConName], choiceId: ChoiceName, consuming: Boolean, actingParties: Set[Party], chosenValue: Value, stakeholders: Set[Party], signatories: Set[Party], choiceObservers: Set[Party], choiceAuthorizers: Option[Set[Party]], children: ImmArray[NodeId], exerciseResult: Option[Value], keyOpt: Option[GlobalKeyWithMaintainers], byKey: Boolean, version: TransactionVersion) extends Action with Product with Serializable

    Denotes a transaction node for an exercise.

    Denotes a transaction node for an exercise. We remember the children of this NodeExercises to allow segregating the graph afterwards into party-specific ledgers.

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

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

  5. sealed trait LeafOnlyAction extends Action

    A transaction node with no children

  6. final case class LookupByKey(templateId: TypeConName, key: GlobalKeyWithMaintainers, result: Option[ContractId], version: TransactionVersion) extends Action with LeafOnlyAction with Product with Serializable
  7. final case class Rollback(children: ImmArray[NodeId]) extends Node with Product with Serializable

Deprecated Type Members

  1. type KeyWithMaintainers = GlobalKey
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) use GlobalKey

  2. type VersionedKeyWithMaintainers = Versioned[GlobalKey]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) use VersionedGlobalKey

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]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. val KeyWithMaintainers: GlobalKey.type
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.0) use GlobalKey

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

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped