orkes.graph.ForwardEdge#

class orkes.graph.ForwardEdge(from_node, to_node, max_passes=25)[source]#

An edge that unconditionally forwards data and control from a source node to a destination node.

Parameters:
__init__(from_node, to_node, max_passes=25)[source]#

Initializes a ForwardEdge.

Parameters:
  • from_node (NodePoolItem) – The node from which the edge originates.

  • to_node (NodePoolItem) – The node to which the edge points.

  • max_passes (int, optional) – The maximum number of times the graph execution can traverse this edge. Defaults to 25.

Methods

__init__(from_node, to_node[, max_passes])

Initializes a ForwardEdge.