Arguments required to construct a vertex in the dataflow graph.

  • DataflowGraphVertexUse
  • DataflowGraphVertexVariableDefinition
  • DataflowGraphVertexFunctionDefinition
interface DataflowGraphVertexBase {
    controlDependencies: undefined | ControlDependency[];
    environment?: REnvironmentInformation;
    id: NodeId;
    tag: VertexType;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of DataflowGraphVertexBase

Properties

controlDependencies: undefined | ControlDependency[]

See IdentifierReference

The environment in which the vertex is set.

id: NodeId

The id of the node (the id assigned by the ParentInformation decoration)

Used to identify and separate different types of vertices.