GetQueueConsumerSettings

data class GetQueueConsumerSettings(val batchSize: Double, val maxConcurrency: Double, val maxRetries: Double, val maxWaitTimeMs: Double, val retryDelay: Double, val visibilityTimeoutMs: Double)

Constructors

Link copied to clipboard
constructor(batchSize: Double, maxConcurrency: Double, maxRetries: Double, maxWaitTimeMs: Double, retryDelay: Double, visibilityTimeoutMs: Double)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The maximum number of messages to include in a batch.

Link copied to clipboard

Maximum number of concurrent consumers that may consume from this Queue. Set to null to automatically opt in to the platform's maximum (recommended).

Link copied to clipboard

The maximum number of retries

Link copied to clipboard

The number of milliseconds to wait for a batch to fill up before attempting to deliver it

Link copied to clipboard

The number of seconds to delay before making the message available for another attempt.

Link copied to clipboard

The number of milliseconds that a message is exclusively leased. After the timeout, the message becomes available for another attempt.