Reviews (0)
For Workflow: Workflow Pattern - Exclusive Choice (XOR-Split)
Workflow Pattern - Exclusive Choice (XOR-S... (2)
This workflow is a GWorkflowDL representation of an exclusive choice (XOR Split) that invokes either A or B.
This workflow is equivalent to the following pseudo code:
x = XOR_Split;
if (x=="true") {
end_A = A(x);
} else {
end_B = B(x);
}
Created: 2008-12-09
Credits: Andreas Hoheisel