perf: use a single map to store pool workers and their related data
[poolifier.git] / src / pools / cluster / dynamic.ts
index 8b8c5185772dbea59bc0d22b2e1cb90b9383d507..0a2d0f3879fc6ab44129608fec6d9c6624cd4c1a 100644 (file)
@@ -41,6 +41,6 @@ export class DynamicClusterPool<
 
   /** {@inheritDoc} */
   public get busy (): boolean {
-    return this.workers.length === this.max
+    return this.workers.size === this.max
   }
 }