Implements the GATE-PARALLEL (AND) gateway. Intended to split execution
into multiple parallel branches, all of which execute simultaneously. Currently
registered in the node registry but the execution body is a pass-through
placeholder — all branches must be managed externally until full parallel
execution support is added.
| Node Type | Icon | BPMN | Status |
|---|---|---|---|
GATE-PARALLEL |
◇+ |
Parallel Gateway (AND) | Placeholder |
GATEPARALLEL |
◇+ |
Parallel Gateway (Legacy) | Placeholder |
GATE-GATHER or GATE-FAN-IN node would synchronise the results.Acts as a pass-through: returns run_context and current_result unchanged.
No branching logic is executed.
-- Placeholder definition (branches will not yet fan out)
INSERT INTO def_workflows
(WorkflowName, Package, Rank, Type, Name, BranchDirect)
VALUES
('MY_WF', 'core', 10, 'GATE-PARALLEL', 'ForkHere', NULL),
('MY_WF', 'core', 20, 'SERVICE', 'BranchA', 'A'),
('MY_WF', 'core', 20, 'SERVICE', 'BranchB', 'B');
| Node Type | Icon | BPMN Type | Status | Description |
|---|---|---|---|---|
GATE-EXCLUSIVE |
◇× |
Exclusive Gateway (XOR) | Implemented | Exactly one path is chosen based on current_result |
GATE |
◇ |
Exclusive Gateway (Default) | Implemented | Alias for GATE-EXCLUSIVE; generic default gateway |
GATE-PARALLEL |
◇+ |
Parallel Gateway (AND) | Placeholder | All outgoing paths execute in parallel |
GATE-INCLUSIVE |
◇○ |
Inclusive Gateway (OR) | Placeholder | One or more paths are chosen |
GATE-FAN-OUT |
◇» |
Complex Gateway (Fan-Out) | Placeholder | Distributes work across parallel bulk workers |
GATE-FAN-IN |
◇« |
Complex Gateway (Fan-In) | Placeholder | Aggregates results from parallel bulk workers |
GATE-GATHER |
◇∑ |
Parallel Gateway (Merge) | Placeholder | Gathers and merges converging branches |
ObjWorkflowNode.py — Base node classObjWorkflow.py — Workflow orchestration engineObjWorkflowGateExclusive.py — Exclusive gateway (implemented)ObjWorkflowGateGather.py — Corresponding merge/gather nodeObjEnum.WorkflowNodeType — Node type definitionsObjConstants.WorkflowNodeIcons — Icon constantsUpdated: 2026-03-01