@cloudamqp/amqp-client
    Preparing search index...

    Type Alias QueueParams

    type QueueParams = {
        autoDelete?: boolean;
        durable?: boolean;
        exclusive?: boolean;
        passive?: boolean;
    }
    Index

    Properties

    autoDelete?: boolean

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

    durable?: boolean

    if the queue should survive server restarts

    exclusive?: boolean

    if the queue should be deleted when the channel is closed

    passive?: boolean

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