@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias Record

    A single record within a RecordBatch. Represents the logical message with deltas computed relative to the batch.

    type Record = {
        attributes: number;
        headers: readonly MessageHeader[];
        key: Uint8Array | null;
        offsetDelta: number;
        timestampDelta: bigint;
        value: Uint8Array | null;
    }
    Index

    Properties

    attributes: number

    Record attributes (currently unused, reserved for future use).

    headers: readonly MessageHeader[]

    Record headers.

    key: Uint8Array | null

    Message key, or null if no key.

    offsetDelta: number

    Offset delta from the batch's base offset.

    timestampDelta: bigint

    Millisecond delta from the batch's base timestamp.

    value: Uint8Array | null

    Message value, or null for tombstones.