This class library provides a plethora of interesting and useful extensions to take advantage of and complement the functionality available in the .NET Framework 4 for parallel programming.
Some (not all) features of this package are included in newer versions of .NET.
See...
More information
The package includes:
* Task<T> for executing asynchronous operations.
* Concurrent Collections such as ConcurrentStack, ConcurentQueue ad ConcurrentDictionary.
* PLINQ for writing parallel queries.
* additional Threading operations such as Barrier,SpinLock and SpinWait.
Parallel Extensions for the .NET Framework and .NET Standard.
For examples of how to use this library, please visit https://devblogs.microsoft.com/pfxteam/tag/parallelextensionsextras/
The easiest way to have fixed thread number parallelism in LINQ on any processor environment!
int threadNum=32;
[my IEnumerable].GridEach(threadNum, x=> DoWork(x));
q: info@antonioesposito.it
Repackaged with a binary patch to avoid calling the windows kernel dll in certain codepaths.
The package includes:
* Task<T> for executing asynchronous operations.
* Concurrent Collections such as ConcurrentStack, ConcurentQueue ad ConcurrentDictionary.
* PLINQ for writing parallel queries.
*...
More information