WhenAll()
Contents
[
Hide
]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
| Parameter | Type | Description |
|---|---|---|
| tasks | const 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
| Parameter | Type | Description |
|---|---|---|
| tasks | const 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
| Parameter | Description |
|---|---|
| TResult | The type of the completed tasks’ results. |
Arguments
| Parameter | Type | Description |
|---|---|---|
| tasks | const 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
| Parameter | Description |
|---|---|
| TResult | The type of the completed tasks’ results. |
Arguments
| Parameter | Type | Description |
|---|---|---|
| tasks | const 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
- Typedef TaskPtr
- Typedef ArrayPtr
- Typedef SharedPtr
- Typedef RTaskPtr
- Class IEnumerable
- Namespace System::Threading::Tasks
- Library Aspose.Slides