TaskOutcome
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
尝试执行 Task 的结果。当 TaskState
关闭时,TaskOutcome
会指示其是否已成功完成。
枚举 |
TASK_OUTCOME_UNSPECIFIED |
尚未设置其值的任务结果。 |
SUCCEEDED |
任务已成功完成。 |
FAILED |
任务无法完成,或已被取消。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-31。
[null,null,["最后更新时间 (UTC):2025-08-31。"],[[["\u003cp\u003e\u003ccode\u003eTaskOutcome\u003c/code\u003e shows the result of a Task execution attempt, mainly focusing on success or failure when the Task is closed.\u003c/p\u003e\n"],["\u003cp\u003eThe enum provides three states: \u003ccode\u003eTASK_OUTCOME_UNSPECIFIED\u003c/code\u003e for an initial unset state, \u003ccode\u003eSUCCEEDED\u003c/code\u003e for successful completion, and \u003ccode\u003eFAILED\u003c/code\u003e for either incompletion or cancellation of the task.\u003c/p\u003e\n"]]],["`TaskOutcome` details the result of a Task execution once its state is closed. Possible outcomes include `TASK_OUTCOME_UNSPECIFIED`, representing the initial state before a result is set. `SUCCEEDED` indicates a successful completion, while `FAILED` signifies that the Task could not be completed or was cancelled. These values are crucial for understanding if a given Task was successfully finished or not.\n"],null,["# TaskOutcome\n\nThe outcome of attempting to execute a Task. When `TaskState` is closed, `TaskOutcome` indicates whether it was completed successfully.\n\n| Enums ||\n|----------------------------|-------------------------------------------------------------|\n| `TASK_OUTCOME_UNSPECIFIED` | The Task outcome before its value is set. |\n| `SUCCEEDED` | The Task completed successfully. |\n| `FAILED` | Either the Task couldn't be completed, or it was cancelled. |"]]