Difference between revisions of "Parallel (API)"
From ComputerCraft Wiki
m (moved PARALLEL to Parallel (API)) |
|
(No difference)
|
Revision as of 18:59, 4 February 2012
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. |