Failed
data class Failed(val throwable: Throwable, val retryCount: Int = 0, val willRetry: Boolean = false) : TaskState
Task failed with an exception.
Parameters
throwable
The exception that caused the failure.
retryCount
How many times this task has already been retried.
willRetry
True if the task will be automatically retried per its RetryPolicy.