ConnectorTaskRestartPolicy

data class ConnectorTaskRestartPolicy(val maximumBackoff: String? = null, val minimumBackoff: String? = null)

Constructors

Link copied to clipboard
constructor(maximumBackoff: String? = null, minimumBackoff: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val maximumBackoff: String? = null

The maximum amount of time to wait before retrying a failed task. This sets an upper bound for the backoff delay. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".

Link copied to clipboard
val minimumBackoff: String? = null

The minimum amount of time to wait before retrying a failed task. This sets a lower bound for the backoff delay. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".