TaskOutcome
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
O resultado da tentativa de executar uma Task. Quando a TaskState
estiver fechada, o TaskOutcome
vai indicar se ela foi concluída.
Enums |
TASK_OUTCOME_UNSPECIFIED |
O resultado da tarefa antes de o valor ser definido. |
SUCCEEDED |
A tarefa foi concluída. |
FAILED |
Não foi possível concluir a Tarefa ou ela foi cancelada. |
Exceto em caso de indicação contrária, o conteúdo desta página é licenciado de acordo com a Licença de atribuição 4.0 do Creative Commons, e as amostras de código são licenciadas de acordo com a Licença Apache 2.0. Para mais detalhes, consulte as políticas do site do Google Developers. Java é uma marca registrada da Oracle e/ou afiliadas.
Última atualização 2025-08-31 UTC.
[null,null,["Última atualização 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. |"]]