RetryableFailure

data class RetryableFailure(val cause: Throwable, val retryAfterMs: Long? = null) : DeliveryOutcome

A transient error occurred. The dispatcher will retry on its own schedule.

Constructors

Link copied to clipboard
constructor(cause: Throwable, retryAfterMs: Long? = null)

Properties

Link copied to clipboard

The underlying error.

Link copied to clipboard
val retryAfterMs: Long? = null

If non-null, the minimum delay before the next attempt (e.g. from Retry-After).