haredo

    Interface QueueInterface<TMESSAGE>

    interface QueueInterface<TMESSAGE = unknown> {
        args: QueueArguments;
        name: undefined | string;
        params: QueueParams;
        autoDelete(autoDelete?: boolean): QueueInterface<TMESSAGE>;
        dead(
            deadLetterExchange: string | ExchangeInterface<unknown>,
            rountingKey?: string,
        ): QueueInterface<TMESSAGE>;
        deliveryLimit(limit: number): QueueInterface<TMESSAGE>;
        durable(durable?: boolean): QueueInterface<TMESSAGE>;
        exclusive(exclusive?: boolean): QueueInterface<TMESSAGE>;
        expires(ms: number): QueueInterface<TMESSAGE>;
        maxAge(
            maxAge:
                | `${number}Y`
                | `${number}M`
                | `${number}D`
                | `${number}h`
                | `${number}m`
                | `${number}s`,
        ): QueueInterface<TMESSAGE>;
        maxLength(
            maxLength: number,
            overflowBehavior?: XOverflow,
        ): QueueInterface<TMESSAGE>;
        maxLengthBytes(
            maxLengthBytes: number,
            overflowBehavior?: XOverflow,
        ): QueueInterface<TMESSAGE>;
        maxPriority(priority: number): QueueInterface<TMESSAGE>;
        messageTtl(ttl: number): QueueInterface<TMESSAGE>;
        passive(passive?: boolean): QueueInterface<TMESSAGE>;
        quorum(): QueueInterface<TMESSAGE>;
        setArgument(
            key: string,
            value: undefined | string | number | boolean,
        ): QueueInterface<TMESSAGE>;
        singleActiveConsumer(): QueueInterface<TMESSAGE>;
        stream(): QueueInterface<TMESSAGE>;
        streamMaxSegmentSize(bytes: number): QueueInterface<TMESSAGE>;
    }

    Type Parameters

    • TMESSAGE = unknown
    Index

    Properties

    name: undefined | string
    params: QueueParams

    Methods

    • Set the max age of the messages in the stream. Retention is only evaluated when a new segment is added to the stream. Valid units are: Y, M, D, h, m, s

      Parameters

      • maxAge:
            | `${number}Y`
            | `${number}M`
            | `${number}D`
            | `${number}h`
            | `${number}m`
            | `${number}s`

      Returns QueueInterface<TMESSAGE>

    MMNEPVFCICPMFPCPTTAAATR