Parallel

Parallel class

Provides support for parallel loops and regions.

class Parallel

Methods

MethodDescription
static ParallelLoopResult ForEach(const SharedPtr<Collections::Generic::IEnumerable<TSource>>&, const SharedPtr<ParallelOptions>&, const Action<TSource>&)Executes a foreach operation on an IEnumerable in which iterations may run in parallel.
static ParallelLoopResult ForEach(const SharedPtr<Collections::Generic::IEnumerable<TSource>>&, const Action<TSource>&)Executes a foreach operation on an IEnumerable in which iterations may run in parallel.

Remarks

This class provides methods for parallel execution of loops and operations.

See Also