SDK JS
    Preparing search index...

    Interface WorkerBvcI3sPointCloudDecoderOptions

    Construction options for WorkerBvcI3sPointCloudDecoder.

    interface WorkerBvcI3sPointCloudDecoderOptions {
        onDegraded?: (error: BitruviusError) => void;
        poolSize?: number;
        spawn?: () => Worker;
        wasmInit?: WasmHostInit;
    }
    Index

    Properties

    onDegraded?: (error: BitruviusError) => void

    Called once if the worker pool cannot be spawned and decoding degrades to the main thread. The layer wires this to its onError.

    poolSize?: number

    Worker pool size. Defaults to hardwareConcurrency − 1, clamped to 1–4.

    spawn?: () => Worker

    Factory that creates a decode Worker (defaults to the sibling module-worker chunk).

    wasmInit?: WasmHostInit

    wasm load + init overrides forwarded to each worker; see WasmHostInit.