@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

    Fail if other consumers already exist on the queue.

    false

    noAck?: boolean

    If true, messages are auto-acknowledged on delivery.

    true

    tag?: string

    Consumer tag. Server-generated if empty.

    ""