edgeport - v1.0.3
    Preparing search index...

    Interface PubAck

    The acknowledgement a JetStream publish receives once the message is stored.

    1.0.0

    interface PubAck {
        duplicate?: boolean;
        seq: number;
        stream: string;
    }
    Index
    duplicate?: boolean

    Whether the server flagged this as a duplicate (message-dedup window hit).

    seq: number

    The stream sequence the message was assigned (strictly increasing per stream).

    stream: string

    The stream that stored the message.