Content deleted Content added
Citation bot (talk | contribs) m Alter: isbn. Add: citeseerx, pages. | You can use this bot yourself. Report bugs here. | User-activated. |
→Architecture: Spelling/grammar/punctuation correction |
||
Line 22:
The main concept in the Parallel Extensions to .NET is a <code>Task</code>, which is a small unit of code, usually represented as a [[lambda (programming)|lambda function]], that can be executed independently. Both PLINQ and the TPL API provides methods to create the Tasks - PLINQ divides a query into smaller Tasks, and the <code>Parallel.For</code>, <code>Parallel.ForEach</code> and <code>Parallel.Invoke</code> methods divide a loop into Tasks.
PFX includes a <code>Task Manager</code> object which schedules the Tasks for execution. A Task Manager contains a global [[queue (data structure)|queue]] of Tasks, which are then executed.
==See also==
|