feat: add pool runtime setters
[poolifier.git] / src / pools / selection-strategies / selection-strategies-types.ts
index 23dc5e8c9a4e744ed605beeaaca1b38b4e2d944d..f9a504351a4bbbe9d33bddc145c457a7ce27ef78 100644 (file)
@@ -41,10 +41,21 @@ export interface WorkerChoiceStrategyOptions {
 
 /**
  * Pool worker tasks usage statistics requirements.
+ *
+ * @internal
  */
 export interface RequiredStatistics {
+  /**
+   * Require tasks run time.
+   */
   runTime: boolean
+  /**
+   * Require tasks average run time.
+   */
   avgRunTime: boolean
+  /**
+   * Require tasks median run time.
+   */
   medRunTime: boolean
 }
 
@@ -70,4 +81,10 @@ export interface IWorkerChoiceStrategy {
    * @param workerNodeKey - The worker node key.
    */
   remove: (workerNodeKey: number) => boolean
+  /**
+   * Sets the worker choice strategy options.
+   *
+   * @param opts - The worker choice strategy options.
+   */
+  setOptions: (opts: WorkerChoiceStrategyOptions) => void
 }