X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Fdynamic-pool-worker-choice-strategy.ts;h=5f07d60794b07e9c4eb9846f4d9ea9d1847a1caa;hb=b4e757784e2b9ffe2c22b65b21e8bf665abd9f56;hp=9b4b6ddeeaa2c520ef2252c9e47ac0b061f5a4fa;hpb=777af0ac351dd4137b6daa612146533085f9fe2e;p=poolifier.git diff --git a/src/pools/selection-strategies/dynamic-pool-worker-choice-strategy.ts b/src/pools/selection-strategies/dynamic-pool-worker-choice-strategy.ts index 9b4b6dde..5f07d607 100644 --- a/src/pools/selection-strategies/dynamic-pool-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/dynamic-pool-worker-choice-strategy.ts @@ -6,28 +6,28 @@ import type { WorkerChoiceStrategy } from './selection-strategies-types' import { WorkerChoiceStrategies } from './selection-strategies-types' -import { SelectionStrategiesUtils } from './selection-strategies-utils' +import { getWorkerChoiceStrategy } from './selection-strategies-utils' /** * Selects the next worker for dynamic pool. * - * @template Worker Type of worker which manages the strategy. - * @template Data Type of data sent to the worker. This can only be serializable data. - * @template Response Type of response of execution. This can only be serializable data. + * @typeParam Worker - Type of worker which manages the strategy. + * @typeParam Data - Type of data sent to the worker. This can only be serializable data. + * @typeParam Response - Type of response of execution. This can only be serializable data. */ export class DynamicPoolWorkerChoiceStrategy< Worker extends IPoolWorker, Data, Response > extends AbstractWorkerChoiceStrategy { - private workerChoiceStrategy: IWorkerChoiceStrategy + private readonly workerChoiceStrategy: IWorkerChoiceStrategy /** * Constructs a worker choice strategy for dynamic pool. * - * @param pool The pool instance. - * @param createDynamicallyWorkerCallback The worker creation callback for dynamic pool. - * @param workerChoiceStrategy The worker choice strategy when the pull is busy. + * @param pool - The pool instance. + * @param createDynamicallyWorkerCallback - The worker creation callback for dynamic pool. + * @param workerChoiceStrategy - The worker choice strategy when the pull is busy. */ public constructor ( pool: IPoolInternal, @@ -35,26 +35,26 @@ export class DynamicPoolWorkerChoiceStrategy< workerChoiceStrategy: WorkerChoiceStrategy = WorkerChoiceStrategies.ROUND_ROBIN ) { super(pool) - this.workerChoiceStrategy = SelectionStrategiesUtils.getWorkerChoiceStrategy( + this.workerChoiceStrategy = getWorkerChoiceStrategy( this.pool, workerChoiceStrategy ) this.requiredStatistics = this.workerChoiceStrategy.requiredStatistics } - /** @inheritDoc */ + /** {@inheritDoc} */ public reset (): boolean { return this.workerChoiceStrategy.reset() } - /** @inheritDoc */ + /** {@inheritDoc} */ public choose (): Worker { const freeWorker = this.pool.findFreeWorker() - if (freeWorker) { + if (freeWorker !== false) { return freeWorker } - if (this.pool.busy === true) { + if (this.pool.busy) { return this.workerChoiceStrategy.choose() }