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

    Type Alias SnappyCodec

    Snappy compression codec interface.

    This interface allows plugging in different snappy implementations (pure JS, native bindings, etc.).

    type SnappyCodec = {
        compressSync: (data: Uint8Array) => Uint8Array;
        decompressSync: (data: Uint8Array) => Uint8Array;
    }
    Index

    Properties

    compressSync: (data: Uint8Array) => Uint8Array

    Compress raw data using snappy algorithm.

    decompressSync: (data: Uint8Array) => Uint8Array

    Decompress snappy-compressed data.