Skip to main content

Module node

Module node 

Source
Expand description

Node trait and execution context.

Every workflow step implements Node. The engine calls Node::execute with an ExecContext containing the node’s configuration, upstream outputs, global variables, and a reference to the active NodeRegistry — which lets nodes like "iteration" spin up sub-flow runners without holding their own registry reference.

Structs§

ExecContext
Runtime context passed to every node during execution.
RetryPolicy
Per-node retry configuration, parsed from data["retry"].

Traits§

Node
The extension point for workflow nodes.