maestro
latest
false
- はじめに
- プロセス モデリング
- プロセスの実装
- プロセスの操作
- プロセスの監視
- プロセスの最適化
- ライセンス
- 参考情報
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Maestro ユーザー ガイド
最終更新日時 2025年11月5日
Use when
- You want a simple, linear process.
- Each task must finish before the next begins.
- There is at most one decision near the end.
Pattern in simple words
- Start.
- User task: Collect compliance forms.
- Service task: Validate information.
- Exclusive gateway: Complete?
- If Yes: User task Approve supplier. End Approved.
- If No: User task Request resubmission. End Needs update.
Note: Keep the main path short. Defer exceptions to separate patterns.
Other scenarios
- Finance: Process payroll batch. Approve. Send to payment.
- Insurance: Register claim. Verify data. Route to adjuster.
- Healthcare: Intake form review. Approve patient registration.
- Manufacturing: Material intake. Check specs. Approve supplier.
- Retail: Product listing. Check completeness. Publish or revise.
Use when
- A single decision is mandatory.
- One branch should always run, even when conditions are not met.
- You want to prevent unhandled cases.
Pattern in simple words
- Start.
- Service task: Check inventory.
- Exclusive gateway: In stock?
- If Yes: Service task Ship order. End Shipped.
- Default: Service task Create backorder. End Backordered.
Note: Mark the default path on the gateway.
Other scenarios
- Finance: Check budget. Approve or hold request.
- Healthcare: Prescription renewal. Dispense or contact doctor.
- Retail: Confirm stock. Fulfill or backorder.
- Public sector: Verify data. Approve or return for correction.
- Telecom: Check coverage. Activate or escalate.
Use when
- Several steps can run concurrently without dependencies.
- All branches must complete before moving forward.
Pattern in simple words
- Start.
- Parallel gateway: split.
- Service task: Blood tests.
- Service task: Imaging.
- User task: Consent verification.
- Parallel gateway: join.
- User task: Review results.
- End Ready for procedure.
Note: Use a matching parallel join to synchronize.
Other scenarios
- Finance: Tax filing, payments, and confirmations run together.
- Insurance: Collect claim evidence, police report, and adjuster notes in parallel.
- Manufacturing: Run QA, design validation, and material checks concurrently.
- Retail: Update pricing, marketing, and stock lists together.
- Public sector: Conduct budget, legal, and policy reviews in parallel.
Use when
- One, several, or none of the branches may be required.
- The process must merge cleanly regardless of which branches ran.
Pattern in simple words
- Start.
- Inclusive gateway: split.
- User task: Request photos.
- User task: Request repair estimate.
- User task: Request police report.
- Inclusive gateway: merge.
- User task: Assess claim.
- End Decision made.
Note: Use inclusive merge to handle variable combinations safely.
Other scenarios
- Finance: Optional compliance or fraud checks.
- Healthcare: Trigger labs and imaging only when required.
- Retail: Gather optional marketing or packaging assets.
- Public sector: Collect specific applicant forms when applicable.
- Manufacturing: Run optional quality audits.
Use when
- The process waits for either a reply or a deadline.
- You need “whichever happens first” behavior.
Pattern in simple words
- Start.
- Send task: Send approval request.
- Event‑based gateway: wait for one of the following.
- Message event: Approval received. Then user task Process request. End Approved.
- Timer event: Seven days elapsed. Then user task Escalate decision. End Escalated.
Note: Keep exactly one message and one timer attached to the gateway.
Other scenarios
- Finance: Loan documents received versus deadline leads to auto‑decline.
- Healthcare: Lab results received versus escalate to specialist.
- Manufacturing: Engineering sign‑off versus escalate to production.
- Retail: Supplier quote versus alternate sourcing.
- Public sector: Public comment versus policy vote.