JobDefinitionRetryStrategy

data class JobDefinitionRetryStrategy(val attempts: Int? = null, val evaluateOnExits: List<JobDefinitionRetryStrategyEvaluateOnExit>? = null)

Constructors

Link copied to clipboard
constructor(attempts: Int? = null, evaluateOnExits: List<JobDefinitionRetryStrategyEvaluateOnExit>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val attempts: Int? = null

The number of times to move a job to the RUNNABLE status. You may specify between 1 and 10 attempts.

Link copied to clipboard

The evaluate on exit conditions under which the job should be retried or failed. If this parameter is specified, then the attempts parameter must also be specified. You may specify up to 5 configuration blocks.