System::Threading::Tasks::ResultTask::ContinueWith 方法
内容
[
隐藏
]ResultTask::ContinueWith(const Action<RTaskPtr<T>>&) method
创建一个在结果任务完成时执行的延续。
TaskPtr System::Threading::Tasks::ResultTask<T>::ContinueWith(const Action<RTaskPtr<T>> &continuationAction)
| 参数 | 类型 | 描述 |
|---|---|---|
| continuationAction | const Action<RTaskPtr<T>>& | 在此任务完成时执行的 Action,接收此结果任务 |
ReturnValue
TaskPtr A new task representing the continuation
备注
后续操作接收此 ResultTask 以访问结果值
另见
- Typedef TaskPtr
- Typedef Action
- Typedef RTaskPtr
- Class ResultTask
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++
ResultTask::ContinueWith(const Action<TaskPtr>&) method
创建一个在任务完成时执行的延续。
TaskPtr System::Threading::Tasks::Task::ContinueWith(const Action<TaskPtr> &continuationAction)
| 参数 | 类型 | 描述 |
|---|---|---|
| continuationAction | const Action<TaskPtr>& | 在此任务完成时执行的 Action |
ReturnValue
TaskPtr A new task representing the continuation
另见
- Typedef TaskPtr
- Typedef Action
- Class ResultTask
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++
ResultTask::ContinueWith(const Func<RTaskPtr<T>, TNewResult>&) method
创建一个在结果任务完成时执行的延续。
template<typename TNewResult> RTaskPtr<TNewResult> System::Threading::Tasks::ResultTask<T>::ContinueWith(const Func<RTaskPtr<T>, TNewResult> &continuationFunction)
| 参数 | 描述 |
|---|---|
| TNewResult | 任务后续操作的结果类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| continuationFunction | const Func<RTaskPtr<T>, TNewResult>& | 在此任务完成时获取后续结果的函数,接收此结果任务 |
ReturnValue
RTaskPtr A new task representing the continuation
备注
continuation 函数接收此 ResultTask 以访问结果值
另见
- Typedef RTaskPtr
- Class Func
- Class ResultTask
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++
ResultTask::ContinueWith(const Func<TaskPtr, TResult>&) method
创建一个在任务完成时执行的延续。
template<typename TResult> RTaskPtr<TResult> System::Threading::Tasks::Task::ContinueWith(const Func<TaskPtr, TResult> &continuationFunction)
| 参数 | 描述 |
|---|---|
| TResult | 任务结果的类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| continuationFunction | const Func<TaskPtr, TResult>& | 当此任务完成时获取结果的函数 |
ReturnValue
RTaskPtr A new task representing the continuation
另见
- Typedef RTaskPtr
- Class Func
- Typedef TaskPtr
- Class ResultTask
- Namespace System::Threading::Tasks
- Library Aspose.Font for C++