X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=f6188d8e7420cda156815baebe4821029c3b34c6;hb=4dce520ecdc24e12d96060c02869b37723d8a206;hp=d540bbd267256677ba872fc6b08f7690f155dd5e;hpb=ef41a6e6f04e66c9732334e673758b2f4e4b0730;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index d540bbd2..f6188d8e 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -140,16 +140,6 @@ export interface IPool< * - `'busy'`: Emitted when the pool is busy. */ readonly emitter?: PoolEmitter - /** - * Finds a free worker node 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 its worker node key is returned. - * - * If no free worker is found, `-1` is returned. - * - * @returns A worker node key if there is one, `-1` otherwise. - */ - findFreeWorkerNodeKey: () => number /** * Executes the function specified in the worker constructor with the task data input parameter. *