Class

cogx.runtime.debugger

ProbedField

Related Doc: package debugger

Permalink

class ProbedField extends Node[ProbedField]

A field in a ComputeGraph that is visible for debugging.

Linear Supertypes
Node[ProbedField], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ProbedField
  2. Node
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ProbedField(inputs: Array[ProbedField], virtualFieldRegister: VirtualFieldRegister)

    Permalink

    inputs

    The fields which computationally drive the value of this field.

    virtualFieldRegister

    The kernel which supplies the data in the field when executed. Note that a kernel can supply multiple fields.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val circuit: Circuit[ProbedField]

    Permalink

    Circuit that this Node belongs to.

    Circuit that this Node belongs to. If the node has no inputs, it must get the owning circuit from the Circuit object (which, as has been noted above, is not thread safe). If it has inputs, it gets the owning circuit from the first input.

    Definition Classes
    Node
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def dependsOn: Seq[ProbedField]

    Permalink

    Fields which determine the value of this field through operators.

    Fields which determine the value of this field through operators.

    returns

    The fields which influence this field.

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def feedbackFrom: Seq[ProbedField]

    Permalink

    If the field is a recurrence, returns the output field driving this.

    If the field is a recurrence, returns the output field driving this.

    returns

    The output field, wrapped in Some(), driving this recurrence; if this is not a recurrence, returns None.

  11. val fieldType: platform.types.FieldType

    Permalink

    Get the type of the probed field.

  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. def inputs: Seq[ProbedField]

    Permalink

    Get the inputs consumed by this node.

    Get the inputs consumed by this node.

    Definition Classes
    Node
  16. def isDead: Boolean

    Permalink

    Check if node is dead (removed from circuit).

    Check if node is dead (removed from circuit).

    Definition Classes
    Node
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def kernel: AbstractKernel

    Permalink
  19. def name: Seq[String]

    Permalink

    Get the hierarchical name for the field, root first.

    Get the hierarchical name for the field, root first.

    Hierarchical names are inferred automatically from the class structure of the computation.

    returns

    Hierarchical name of the field, root fist.

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def outputs: Seq[ProbedField]

    Permalink

    Get the sources driven by this node.

    Get the sources driven by this node.

    Definition Classes
    Node
  24. def setFeedbackFrom(from: Seq[ProbedField]): Unit

    Permalink
  25. def simpleName: String

    Permalink

    Get the local name that the user gave the field in their application.

    Get the local name that the user gave the field in their application.

    returns

    Simple, one-component, name of the field

  26. def stealOutputsFrom(from: ProbedField): Unit

    Permalink

    Steal all sinks from another node, from, and add them to this.

    Steal all sinks from another node, from, and add them to this.

    This makes the from useless since whatever signal it drives is not used by any other node. Consequently from is removed from the circuit.

    from

    The node from which to steal outputs; this node will then be removed from the circuit after the theft is complete.

    Definition Classes
    Node
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    ProbedField → Node → AnyRef → Any
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Node[ProbedField]

Inherited from AnyRef

Inherited from Any

Ungrouped