TaskOutcome
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Wynik próby wykonania zadania. Gdy zasada TaskState
jest zamknięta, TaskOutcome
wskazuje, czy udało się wykonać tę czynność.
Wartości w polu enum |
TASK_OUTCOME_UNSPECIFIED |
Wynik zadania przed ustawieniem jego wartości. |
SUCCEEDED |
Zadanie zostało wykonane. |
FAILED |
Nie udało się ukończyć zadania lub zostało ono anulowane. |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-08-31 UTC.
[null,null,["Ostatnia aktualizacja: 2025-08-31 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. |"]]