Simple worker framework

interface AcDbWorkerConfig {
    maxConcurrentWorkers?: number;
    timeout?: number;
    workerUrl: string;
}

Properties

maxConcurrentWorkers?: number

Maximum number of concurrent workers

timeout?: number

Timeout for worker operations in milliseconds

workerUrl: string

Worker script URL (required if useWorker is true)