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

    Type Alias Offset

    Offset within a partition.

    type Offset = {
        metadata?: string;
        offset: bigint;
        topicPartition: TopicPartition;
    }
    Index

    Properties

    metadata?: string

    Optional metadata string (stored with committed offsets).

    offset: bigint

    Numeric offset value. Use bigint to support the full int64 range.

    topicPartition: TopicPartition

    Topic-partition this offset belongs to.