WhenAll()

System::Threading::Tasks::WhenAll(const ArrayPtr<TaskPtr>&) function

Creates a task that will complete when all of the supplied tasks have completed.

TaskPtr System::Threading::Tasks::WhenAll(const ArrayPtr<TaskPtr> &tasks)

Arguments

ParameterTypeDescription
tasksconst ArrayPtr<TaskPtr>&The tasks to wait on for completion.

Return Value

A task that represents the completion of all of the supplied tasks.

System::Threading::Tasks::WhenAll(const SharedPtr<Collections::Generic::IEnumerable<TaskPtr>>&) function

Creates a task that will complete when all of the supplied tasks have completed.

TaskPtr System::Threading::Tasks::WhenAll(const SharedPtr<Collections::Generic::IEnumerable<TaskPtr>> &tasks)

Arguments

ParameterTypeDescription
tasksconst SharedPtr<Collections::Generic::IEnumerable<TaskPtr>>&The tasks to wait on for completion.

Return Value

A task that represents the completion of all of the supplied tasks.

System::Threading::Tasks::WhenAll(const SharedPtr<Collections::Generic::IEnumerable<RTaskPtr<TResult>>>&) function

Creates a task that will complete when all of the supplied tasks have completed.

template<typename TResult> RTaskPtr<ArrayPtr<TResult>> System::Threading::Tasks::WhenAll(const SharedPtr<Collections::Generic::IEnumerable<RTaskPtr<TResult>>> &tasks)

Template parameters

ParameterDescription
TResultThe type of the completed tasks’ results.

Arguments

ParameterTypeDescription
tasksconst SharedPtr<Collections::Generic::IEnumerable<RTaskPtr<TResult>>>&The tasks to wait on for completion.

Return Value

A task that returns an array of all the results when all tasks complete.

System::Threading::Tasks::WhenAll(const ArrayPtr<RTaskPtr<TResult>>&) function

Creates a task that will complete when all of the supplied tasks have completed.

template<typename TResult> RTaskPtr<ArrayPtr<TResult>> System::Threading::Tasks::WhenAll(const ArrayPtr<RTaskPtr<TResult>> &tasks)

Template parameters

ParameterDescription
TResultThe type of the completed tasks’ results.

Arguments

ParameterTypeDescription
tasksconst ArrayPtr<RTaskPtr<TResult>>&The tasks to wait on for completion.

Return Value

A task that returns an array of all the results when all tasks complete.

See Also