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

    Type Alias ProducerState

    An active producer on a partition.

    type ProducerState = {
        coordinatorEpoch: number;
        currentTxnStartOffset: bigint;
        lastSequence: number;
        lastTimestamp: bigint;
        producerEpoch: number;
        producerId: bigint;
        taggedFields: readonly TaggedField[];
    }
    Index

    Properties

    coordinatorEpoch: number

    The coordinator epoch, or -1 if not known.

    currentTxnStartOffset: bigint

    The current transaction start offset, or -1 if not in a transaction.

    lastSequence: number

    The last sequence produced.

    lastTimestamp: bigint

    The last timestamp produced.

    producerEpoch: number

    The producer epoch.

    producerId: bigint

    The producer ID.

    taggedFields: readonly TaggedField[]

    Tagged fields.