TaskOutcome
Stay organized with collections
Save and categorize content based on your preferences.
The outcome of attempting to execute a Task. When TaskState
is closed, TaskOutcome
indicates whether it was completed successfully.
Enums |
TASK_OUTCOME_UNSPECIFIED |
The Task outcome before its value is set. |
SUCCEEDED |
The Task completed successfully. |
FAILED |
Either the Task couldn't be completed, or it was cancelled. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[[["\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. |"]]