Documentation
¶
Overview ¶
Package main demonstrates condition-based looping in dureq workflows.
Scenario: Iterative data processing with a condition node controlling the loop. The workflow processes batches of items until all are done.
init → process_batch → check_done(condition) ─┬─ route 0 → process_batch (loop)
└─ route 1 → summarize
The check_done condition handler inspects progress and loops back to process_batch (route 0) until processing is complete, then exits to summarize (route 1). MaxIterations prevents infinite loops.
Click to show internal directories.
Click to hide internal directories.