X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fpool-internal.ts;h=806107ec74ea29402408abaf3cf95a8f0325581c;hb=0770fe626b2bb3212a1d73fa4764973ac92e241a;hp=9da6495266ab6c6e4654def94eca460b4630cb24;hpb=3032893add6cc97da7b0600e21df2865ad1f675c;p=poolifier.git diff --git a/src/pools/pool-internal.ts b/src/pools/pool-internal.ts index 9da64952..806107ec 100644 --- a/src/pools/pool-internal.ts +++ b/src/pools/pool-internal.ts @@ -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 { /** - * Pool workers map. + * Pool worker type items array. */ - readonly workers: Map> + readonly workers: Array> /** * Pool type. @@ -54,33 +55,27 @@ export interface IPoolInternal< readonly type: PoolType /** - * Whether the pool is busy or not. + * Whether the pool is full or not. * - * The pool busyness boolean status. + * The pool filling boolean status. */ - readonly busy: boolean + readonly full: boolean /** - * Number of tasks currently concurrently running. + * Whether the pool is busy or not. + * + * The pool busyness boolean status. */ - readonly numberOfRunningTasks: number + readonly busy: boolean /** - * 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`. - */ - findFreeWorker: () => Worker | false - - /** - * Gets worker tasks usage. - * - * @param worker - The worker. - * @returns The tasks usage on the worker. + * @returns A worker key if there is one, `-1` otherwise. */ - getWorkerTasksUsage: (worker: Worker) => TasksUsage | undefined + findFreeWorkerKey: () => number }