@nats-io/jetstream
    Preparing search index...

    Type Alias DeliveryInfo

    type DeliveryInfo = {
        account_hash?: string;
        consumer: string;
        deliveryCount: number;
        deliverySequence: number;
        domain: string;
        pending: number;
        redelivered: boolean;
        stream: string;
        streamSequence: number;
        timestampNanos: number;
    }
    Index

    Properties

    account_hash?: string

    The hash of the sending account if applicable.

    consumer: string

    The intended consumer for the message.

    deliveryCount: number

    The number of times the message has been delivered.

    deliverySequence: number

    The client delivery sequence for the message

    domain: string

    JetStream domain of the message if applicable.

    pending: number

    The number of pending messages for the consumer at the time the message was delivered.

    redelivered: boolean

    True if the message has been redelivered.

    stream: string

    The stream where the message came from

    streamSequence: number

    The sequence number of the message in the stream

    timestampNanos: number

    The timestamp for the message in nanoseconds. Convert with millis(n),