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.