Extract selection strategies to classes (#176)
[poolifier.git] / src / pools / pool.ts
index f48d8843d9596f914f60ae1349ff258af7df4518..752045829214f76681f92d36fce414c581fd0c95 100644 (file)
@@ -1,3 +1,5 @@
+import type { WorkerChoiceStrategy } from './selection-strategies'
+
 /**
  * Contract definition for a poolifier pool.
  *
@@ -16,4 +18,10 @@ export interface IPool<Data = unknown, Response = unknown> {
    * Shut down every current worker in this pool.
    */
   destroy(): Promise<void>
+  /**
+   * Set the worker choice strategy in this pool.
+   *
+   * @param workerChoiceStrategy The worker choice strategy.
+   */
+  setWorkerChoiceStrategy(workerChoiceStrategy: WorkerChoiceStrategy): void
 }