Record - rabbitmq : QueueConfiguration

Holds the parameters used to declare a queue.

Fields

  • queueName string
  • The name of the queue, which will be autogenerated if not specified.

  • durable boolean false
  • True if declaring a durable queue (the queue will survive in a server restart).

  • exclusive boolean false
  • True if declaring an exclusive queue (restricted to this connection).

  • autoDelete boolean true
  • True if declaring an autodelete queue (the server will delete it when it is no longer in use).

  • arguments map? ()
  • Other properties (construction arguments) for the queue.