Loop n times
{
     spawn child task;
     send message to child;
     receive result from child;    // blocking operation
}

Example 1: Sequential algorithm for parent task.

Back to Article