it
    Preparing search index...

    Interface BatchedObjectsOptions<O, T>

    interface BatchedObjectsOptions<O, T extends ArrayBufferLike = ArrayBufferLike> {
        size?: number;
        serialize(object: O, list: Uint8ArrayList<T>): void;
    }

    Type Parameters

    • O
    • T extends ArrayBufferLike = ArrayBufferLike

    Hierarchy (View Summary)

    Index
    size?: number

    The minimum number of bytes that should be in a batch (default: 1MB)

    • This function should serialize the object and append the result to the passed list

      Parameters

      Returns void