DeclaredQueue

data class DeclaredQueue(val name: String, val durable: Boolean, val exclusive: Boolean, val autoDelete: Boolean, val arguments: Table)

Declares a queue.

Constructors

Link copied to clipboard
constructor(name: String, durable: Boolean, exclusive: Boolean, autoDelete: Boolean, arguments: Table)

Properties

Link copied to clipboard

Additional arguments (check RabbitMQ documentation).

Link copied to clipboard

If enabled, queue will be deleted when the last consumer has stopped consuming.

Link copied to clipboard

If enabled, creates a queue stored on disk; otherwise, transient.

Link copied to clipboard

If enabled, queue will be deleted when the channel is closed.

Link copied to clipboard

Name of the queue.