chore: v2.4.0-1
[poolifier.git] / src / pools / pool-internal.ts
index 97e5d5d2d56ae75435b19d1ccb8afae10ff2e8ed..261a9d7beeb862258ebabceef5b69a71df091180 100644 (file)
@@ -17,6 +17,7 @@ export interface TasksUsage {
   running: number
   runTime: number
   avgRunTime: number
+  error: number
 }
 
 /**
@@ -42,9 +43,9 @@ export interface IPoolInternal<
   Response = unknown
 > extends IPool<Data, Response> {
   /**
-   * Map of workers.
+   * Pool workers item array.
    */
-  readonly workers: Map<number, WorkerType<Worker>>
+  readonly workers: Array<WorkerType<Worker>>
 
   /**
    * Pool type.
@@ -66,29 +67,13 @@ export interface IPoolInternal<
   readonly numberOfRunningTasks: number
 
   /**
-   * Finds a free worker based on the number of tasks the worker has applied.
+   * Finds a free worker key based on the number of tasks the worker has applied.
    *
-   * If a worker is found with `0` running tasks, it is detected as free and returned.
+   * If a worker is found with `0` running tasks, it is detected as free and its key is returned.
    *
    * If no free worker is found, `false` is returned.
    *
-   * @returns A free worker if there is one, otherwise `false`.
+   * @returns A worker key if there is one, otherwise `false`.
    */
-  findFreeWorker: () => Worker | false
-
-  /**
-   * Gets worker running tasks.
-   *
-   * @param worker - The worker.
-   * @returns The number of tasks currently running on the worker.
-   */
-  getWorkerRunningTasks: (worker: Worker) => number | undefined
-
-  /**
-   * Gets worker average tasks runtime.
-   *
-   * @param worker - The worker.
-   * @returns The average tasks runtime on the worker.
-   */
-  getWorkerAverageTasksRunTime: (worker: Worker) => number | undefined
+  findFreeWorkerKey: () => number | false
 }