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

    Type Alias ConsumeParams

    type ConsumeParams = {
        args?: Record<string, any>;
        exclusive?: boolean;
        noAck?: boolean;
        tag?: string;
    }
    Index

    Properties

    args?: Record<string, any>

    custom arguments

    exclusive?: boolean

    if this can be the only consumer of the queue, will return an Error if there are other consumers to the queue already

    noAck?: boolean

    if messages are removed from the server upon delivery, or have to be acknowledged

    tag?: string

    tag of the consumer, will be server generated if left empty