TaskOutcome
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Bir görevi yürütmeye çalışmanın sonucu. TaskState
kapatıldığında TaskOutcome
, görevin başarıyla tamamlanıp tamamlanmadığını belirtir.
Sıralamalar |
TASK_OUTCOME_UNSPECIFIED |
Değeri belirlenmeden önceki Görev sonucu. |
SUCCEEDED |
Görev başarıyla tamamlandı. |
FAILED |
Görev tamamlanamadı veya iptal edildi. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-08-31 UTC.
[null,null,["Son güncelleme tarihi: 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. |"]]