- Introduction
- Getting started
- Building with Maestro BPMN
- Understanding Maestro BPMN modeling
- Opening the modeling canvas
- Modeling your process
- Aligning and connecting BPMN elements
- Autopilot for Maestro (Preview)
- Process Repository
- Implementing a simple BPMN process
- Implementing a complex BPMN process
- Debugging
- Simulating
- Common implementation scenarios
- Building with Maestro Case
- Introduction to Maestro Case
- Maestro BPMN vs. Maestro Case: when to use case management
- The Maestro Case lifecycle: from event trigger to app experience
- Build your first case with Maestro Case
- Defining case keys (system vs. external)
- Establishing task I/O and write-back contracts
- Exit rules and early stage termination
- Modeling primary and secondary stages
- Triggering a case from Data Fabric
- Implementing stage-level personas and permissions
- Setting SLAs and automated escalation rules
- Configuring a rework loop (re-entry)
- Case Manager input and output contract
- Maestro Case component dictionary
- Building with Maestro Flow
- Integrations
- Operating
- Monitoring
- Optimizing
- Reference information
Exit a branch and return output while other parallel branches continue running.
Returns data as the flow's output without affecting other active branches. Use End when you want to return a result from one branch of a parallel workflow while other branches continue to run.
How End differs from Terminate
Both End and Terminate stop execution on the branch they are placed on. The difference is what happens to the rest of the flow:
| Node | Effect on current branch | Effect on other branches |
|---|---|---|
| End | Stops and returns output | Other branches continue running |
| Terminate | Stops immediately | All other active branches are canceled |
Use End when the flow has parallel branches and you want one branch to return output while others complete. Use Terminate when you want to stop the entire flow immediately regardless of what else is running.
Configuration
| Field | Required | Description |
|---|---|---|
| Output | No | The value to return as the flow's output. Can be a literal value, a variable reference, or an expression. |
Output
The value configured in the Output field becomes the flow's return value. Downstream nodes in the same branch cannot reference this — End is a terminal node.
Examples
Return a success result from one branch while an audit branch completes:
In a flow where one branch handles the primary response and another records an audit log, place an End node at the end of the primary response branch. The audit branch continues running independently.
Return an error result early:
On an error branch, use an End node to return a structured error object as the flow output without canceling any other processing that may still be in progress.