System::Threading::Tasks::Task::ContinueWith method
Contents
[
Hide
]Task::ContinueWith(const Action<TaskPtr>&) method
Creates a continuation that executes when the task completes.
TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action<TaskPtr> &continuationAction)
| Parameter | Type | Description |
|---|---|---|
| continuationAction | const Action<TaskPtr>& | Action to execute when this task completes |
ReturnValue
TaskPtr A new task representing the continuation
See Also
- Typedef TaskPtr
- Typedef Action
- Class Task
- Namespace System::Threading::Tasks
- Library Aspose.PDF for C++
Task::ContinueWith(const Func<TaskPtr, TResult>&) method
Creates a continuation that executes when the task completes.
template<typename TResult> RTaskPtr<TResult> System::Threading::Tasks::Task::ContinueWith(const Func<TaskPtr, TResult> &continuationFunction)
| Parameter | Description |
|---|---|
| TResult | A type of task result |
| Parameter | Type | Description |
|---|---|---|
| continuationFunction | const Func<TaskPtr, TResult>& | Function to get result when this task completes |
ReturnValue
RTaskPtr A new task representing the continuation
See Also
- Typedef RTaskPtr
- Class Func
- Typedef TaskPtr
- Class Task
- Namespace System::Threading::Tasks
- Library Aspose.PDF for C++