- 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>
693 B
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.