Files
git.stella-ops.org/docs/workflow/tutorials/06-advanced-patterns/README.md
master a6ffb38ecf Update module architecture docs and workflow tutorials
- Module dossiers: attestor, authority, cli, graph, scanner
- Policy assistant parameters guide
- UI v2-rewire navigation rendering policy
- Test suite overview update
- Workflow engine requirements and tutorial series (01-08)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 17:25:37 +03:00

693 B

Tutorial 6: Advanced Patterns

Fork (parallel branches), Repeat (retry loops), Timer (delays), and External Signal (wait for events).

Patterns

Pattern Use When
Fork Multiple independent operations that should run concurrently
Repeat Retry a service call with backoff, poll until condition met
Timer Delay between steps (backoff, scheduled processing)
External Signal Wait for an external event (document upload, approval from another system)

Variants

Next

Tutorial 7: Shared Helpers — organizing reusable workflow components.