Parallel (API)
From ComputerCraft Wiki
Revision as of 22:21, 30 November 2012 by AfterLifeLochie (Talk | contribs) (Updated to API overview v2)
Parallel is an API which allows you to multitask.
Method Name | Description |
parallel.waitForAny(function1, function2, ...) | Runs all the functions at the same time, and stops when any of them returns. |
parallel.waitForAll(function1, function2, ...) | Runs all the functions at the same time, and stops when all of them have returned. |