Returns the singleton duplicate detection worker pool, creating it if needed.
Shared duplicate detection worker pool instance.
export function getDuplicateDetectionWorkerPool(): DuplicateDetectionWorkerPool { duplicateDetectionPoolInstance ??= new DuplicateDetectionWorkerPool(); return duplicateDetectionPoolInstance;} Copy
export function getDuplicateDetectionWorkerPool(): DuplicateDetectionWorkerPool { duplicateDetectionPoolInstance ??= new DuplicateDetectionWorkerPool(); return duplicateDetectionPoolInstance;}
Returns the singleton duplicate detection worker pool, creating it if needed.