docs: add changelog entry
[poolifier.git] / src / pools / selection-strategies / abstract-worker-choice-strategy.ts
index c364933358528ef3ade54a3cc3dd474cf2c2d9d3..f1d7dcf405b2e565f150137aa87e4cab1a79bd6d 100644 (file)
@@ -116,6 +116,11 @@ export abstract class AbstractWorkerChoiceStrategy<
     this.setTaskStatisticsRequirements(this.opts)
   }
 
+  /** @inheritDoc */
+  public hasPoolWorkerNodesReady (): boolean {
+    return this.pool.workerNodes.some(workerNode => workerNode.info.ready)
+  }
+
   /**
    * Whether the worker node is ready or not.
    *