Parallel Execution
Run multiple actions at the same time instead of one after another.
When to Use
Use when you have independent actions that don't depend on each other:
- Show typing indicator AND mark as read
- Send email to customer AND notify team on Slack
- Update CRM AND create ticket
How It Works
- Add a Parallel Execution node
- Create branches (each branch runs simultaneously)
- Flow continues after ALL branches complete
Example: Meta Channel Flow
Parallel Execution
├── Branch 1: Show Typing Indicator
└── Branch 2: Mark as Read
Both happen instantly instead of waiting for each other.