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

    Type Alias MetadataTopic

    Topic information from the metadata response.

    type MetadataTopic = {
        errorCode: number;
        isInternal: boolean;
        name: string | null;
        partitions: readonly MetadataPartition[];
        taggedFields?: readonly TaggedField[];
        topicAuthorisedOperations: number;
        topicId?: Uint8Array;
    }
    Index

    Properties

    errorCode: number

    Error code for this topic (0 = no error).

    isInternal: boolean

    Whether this is an internal topic (v1+).

    name: string | null

    The topic name.

    partitions: readonly MetadataPartition[]

    Partition metadata.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v9+).

    topicAuthorisedOperations: number

    Topic-level authorised operations bitmask (v8+).

    topicId?: Uint8Array

    Topic ID (v10+, UUID as 16 bytes).