Run the flexible launch process
Press ▶ Play to run the process. In simulation mode, all activated conditions default to true — so all three paths will activate.
What you've learned
- ✓ Exclusive gateways pick exactly one path (if/else)
- ✓ Parallel gateways always take all paths (concurrent)
- ✓ Inclusive gateways take one or more paths based on conditions (OR logic)
- ✓ Every split gateway needs a matching join to synchronize
- Use exclusive when the paths are mutually exclusive (paid vs free tier)
- Use parallel when everything always happens (notify + log + audit)
- Use inclusive when any subset might happen (optional channels, optional steps)
When to use each
Interactive BPMN Editor