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

    Type Alias TopicPartitionOffset

    Offset with metadata for a topic-partition, used in transactional offset commits.

    type TopicPartitionOffset = {
        metadata?: string | null;
        offset: bigint;
        partition: number;
        topic: string;
    }
    Index

    Properties

    metadata?: string | null

    Optional metadata for the offset.

    offset: bigint

    The offset to commit.

    partition: number

    Partition index.

    topic: string

    Topic name.