Parallel (API)
From ComputerCraft Wiki
Parallel is an API which allows you to multitask.
| Method name | Description |
|---|---|
| parallel.waitForAny( function1, function2, so on) | Waits for any function to complete. |
| parallel.waitForAll( function1, function2, so on) | Waits for all of the functions to complete. |