X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Fround-robin-worker-choice-strategy.ts;h=44dfa4b76a941fe6caa005fe07bf5dc5ccd34644;hb=fc3e65861bc1939ae047ee1e8e91a1ce577035f4;hp=082c7d21a6b988f18ff8768fdd0868c357205d9e;hpb=ea7a90d36354a4e1c833271571c6f3eb80428600;p=poolifier.git diff --git a/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts b/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts index 082c7d21..44dfa4b7 100644 --- a/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts @@ -4,9 +4,9 @@ import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy' /** * Selects the next worker in a round robin fashion. * - * @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 RoundRobinWorkerChoiceStrategy< Worker extends IPoolWorker, @@ -14,22 +14,24 @@ export class RoundRobinWorkerChoiceStrategy< Response > extends AbstractWorkerChoiceStrategy { /** - * Index for the next worker. + * Id of the next worker. */ - private nextWorkerIndex: number = 0 + private nextWorkerId: number = 0 - /** @inheritDoc */ - public resetStatistics (): boolean { + /** {@inheritDoc} */ + public reset (): boolean { + this.nextWorkerId = 0 return true } - /** @inheritDoc */ + /** {@inheritDoc} */ public choose (): Worker { - const chosenWorker = this.pool.workers[this.nextWorkerIndex] - this.nextWorkerIndex = - this.nextWorkerIndex === this.pool.workers.length - 1 + const chosenWorker = this.pool.workers.get(this.nextWorkerId) + ?.worker as Worker + this.nextWorkerId = + this.nextWorkerId === this.pool.workers.size - 1 ? 0 - : this.nextWorkerIndex + 1 + : this.nextWorkerId + 1 return chosenWorker } }