edgeport - v1.0.3
    Preparing search index...

    Interface PullSubscribeOptions

    1.0.0

    interface PullSubscribeOptions {
        ackPolicy?: "explicit";
        ackWaitMs?: number;
        deliverPolicy?: "all" | "new" | "last";
    }
    Index
    ackPolicy?: "explicit"

    How redelivery is decided. 'explicit' (the only no-loss/no-dup choice, and the default) requires each message to be acked; un-acked messages are redelivered after ackWaitMs.

    ackWaitMs?: number

    How long the server waits for an ack before a delivered-but-un-acked message becomes redeliverable, in milliseconds; defaults to 30000ms. Lower it to resume faster after a drop.

    deliverPolicy?: "all" | "new" | "last"

    Where a brand-new consumer starts: 'all' (default), 'new', or 'last'.