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§
- Exec
Context - Runtime context passed to every node during execution.
- Retry
Policy - Per-node retry configuration, parsed from
data["retry"].
Traits§
- Node
- The extension point for workflow nodes.