Extensions
ParallelProcessToDictionary (DataTable)
This extension method processes a DataTable in parallel and returns a ConcurrentDictionary
containing the results, with the keys generated by the provided callback.
Example:
ParallelProcessToDictionary (IEnumerable)
This extension method processes an IEnumerable in parallel and returns a ConcurrentDictionary
containing the results, with the keys generated by the provided callback.
Example:
ParallelProcessToGroupProcessor
This extension method processes an IEnumerable in parallel to a new grouped processor.
Example:
ParallelProcessToSingleProcessor
Converts an IEnumerable to a SingleProcessor using a provided callback function.
Example:
ParallelProcessToBag
This extension method processes an IEnumerable in parallel and returns a ConcurrentBag
containing the transformed items, with the transformation function provided by the callback.
Example:
ParallelProcessToBag (DataTable)
This extension method processes a DataTable in parallel and returns a ConcurrentBag
containing the transformed items, with the transformation function provided by the callback.
Example:
ParallelProcessToBag (with ExceptionRows)
This extension method processes an IEnumerable in parallel, returns a ConcurrentBag
containing the transformed items, and handles exceptions using the provided callback.
Example:
ParallelProcess (ConcurrentBag)
This extension method processes a ConcurrentBag
in parallel, invoking the provided callback for each item.
Example:
ParallelProcess (ConcurrentDictionary)
This extension method processes a ConcurrentDictionary
in parallel, invoking the provided callback for each key-value pair.
Example:
Last updated