Node Flow
Node Flow is runtime-agnostic, composable, asynchronous node-based framework for building structured and reusable data processing pipelines, workflows, or control flows.
The core idea is that each node represents a self-contained asynchronous operation, and flows define how multiple nodes are composed and executed.
Example
use ;
use SequentialFlow;
// Example node
;
;
async
When to use Node Flow
Use this crate when you need:
- Composable async control flows (e.g., fallback chains, parallel processing).
- Declarative and type-safe node composition.
- Inspectable or visualizable flow structures.