Type alias QueueParams

QueueParams: {
    autoDelete?: boolean;
    durable?: boolean;
    exclusive?: boolean;
    passive?: boolean;
}

Type declaration

  • Optional autoDelete?: boolean

    if the queue should be deleted when the last consumer of the queue disconnects

  • Optional durable?: boolean

    if the queue should survive server restarts

  • Optional exclusive?: boolean

    if the queue should be deleted when the channel is closed

  • Optional passive?: boolean

    if the queue name doesn't exist the channel will be closed with an error, fulfilled if the queue name does exists

Generated using TypeDoc