Interface DeliveryInfo

interface DeliveryInfo {
    account_hash?: string;
    consumer: string;
    deliverySequence: number;
    domain: string;
    pending: number;
    redelivered: boolean;
    redeliveryCount: number;
    stream: string;
    streamSequence: number;
    timestampNanos: number;
}

Properties

account_hash?: string

The hash of the sending account if applicable.

consumer: string

The intended consumer for the message.

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.

redeliveryCount: number

The number of times 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),