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

    Type Alias ProduceResult

    Result of a produce operation for a single partition.

    type ProduceResult = {
        baseOffset: bigint;
        timestamp?: bigint;
        topicPartition: TopicPartition;
    }
    Index

    Properties

    baseOffset: bigint

    The offset assigned to the first message in the batch.

    timestamp?: bigint

    Timestamp assigned by the broker (log append time), if applicable.

    topicPartition: TopicPartition

    The topic-partition the message was written to.