maestro
latest
false
- 简介
- 入门指南
- 使用 BPMN 进行流程建模
- 使用 案例管理 进行流程建模
- Process modeling with Flow
- 入门指南
- 核心概念
- Node reference
- Build guides
- 最佳实践
- 参考
- 流程实施
- 流程运营
- 流程监控
- 流程优化
- 参考信息
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。
Maestro 用户指南
操作
Immediately stops the entire process, ending every branch that is still running.
Use Terminate to halt a process from a specific path, such as after detecting an unrecoverable error or reaching a conditional branch where no further work should happen anywhere in the process.
When to use this vs End
| Situation | 使用 |
|---|---|
| Stop the whole process now, including any parallel branches still running | Terminate |
| Finish only the current branch and return its output while other branches continue | 结束 |
Terminate is global: it ends the process instance regardless of what else is in progress. End is local to its branch.
配置
The Terminate node has no configuration. The node that should stop the process connects to its input handle.
注意
- Terminate stops execution cleanly. It doesn't raise an error on its own.
- Any parallel branches still in progress are ended when the process terminates. Terminate should be connected only on paths where stopping all remaining work is the intended outcome.