Reviews (0)
For Workflow: Workflow Pattern - Synchronization (AND-Join)
Workflow Pattern - Synchronization (AND-Join) (2)
This workflow is a GWorkflowDL representation of a synchronization (AND Join) that waits until A and B finish their execution.
This workflow is equivalent to the following pseudo code:
threadA = new Thread( end_A = A() );
threadB = new Thread( end_B = B() );
threadA.join();
threadB.join();
Created: 2009-01-19
Credits: Andreas Hoheisel