RetryDecision

sealed class RetryDecision(source)

What the evaluator does after a failed attempt.

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard
object Companion
Link copied to clipboard
data object Fail : RetryDecision

Stop; the evaluation fails with the error that triggered this decision.

Link copied to clipboard
data class Retry(val after: Duration) : RetryDecision

Try again after a delay.