Tag Results
Items tagged with "and join" (1)
Note: some items may not be visible to you, due to viewing permissions.
Workflows (1)
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