SubscriptionRetryPolicy

data class SubscriptionRetryPolicy(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 delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds. 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 delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".