Returns the shared DataTableWorkerPool instance, creating it if needed.
DataTableWorkerPool
Optional
Optional override for the maximum workers when first created.
export function getDataTableWorkerPool( maxWorkers?: number,): DataTableWorkerPool { tablePoolInstance ??= new DataTableWorkerPool(maxWorkers); return tablePoolInstance;} Copy
export function getDataTableWorkerPool( maxWorkers?: number,): DataTableWorkerPool { tablePoolInstance ??= new DataTableWorkerPool(maxWorkers); return tablePoolInstance;}
Returns the shared
DataTableWorkerPoolinstance, creating it if needed.