X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Fround-robin-worker-choice-strategy.ts;h=29b05fa507f0b3ca8a18a300ad1c6927d9b76a65;hb=a22cdf86c993800ec9ea8ae32ef0d8dbda07ec61;hp=76cdd4abac3ff7a2c5a5988cf76e66d87ab9be9b;hpb=38e795c12f0e9daeff7b025147f36f85f486366e;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 76cdd4ab..29b05fa5 100644 --- a/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts @@ -1,5 +1,6 @@ import type { IPoolWorker } from '../pool-worker' import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy' +import type { IWorkerChoiceStrategy } from './selection-strategies-types' /** * Selects the next worker in a round robin fashion. @@ -9,28 +10,45 @@ import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy' * @typeParam Response - Type of response of execution. This can only be serializable data. */ export class RoundRobinWorkerChoiceStrategy< - Worker extends IPoolWorker, - Data, - Response -> extends AbstractWorkerChoiceStrategy { + Worker extends IPoolWorker, + Data = unknown, + Response = unknown + > + extends AbstractWorkerChoiceStrategy + implements IWorkerChoiceStrategy { /** - * Index for the next worker. + * Id of the next worker. */ - private nextWorkerIndex: number = 0 + private nextWorkerId: number = 0 - /** {@inheritDoc} */ + /** @inheritDoc */ public reset (): boolean { - this.nextWorkerIndex = 0 + this.nextWorkerId = 0 return true } - /** {@inheritDoc} */ - public choose (): Worker { - const chosenWorker = this.pool.workers[this.nextWorkerIndex] - this.nextWorkerIndex = - this.nextWorkerIndex === this.pool.workers.length - 1 + /** @inheritDoc */ + public choose (): number { + const chosenWorkerKey = this.nextWorkerId + this.nextWorkerId = + this.nextWorkerId === this.pool.workers.length - 1 ? 0 - : this.nextWorkerIndex + 1 - return chosenWorker + : this.nextWorkerId + 1 + return chosenWorkerKey + } + + /** @inheritDoc */ + public remove (workerKey: number): boolean { + if (this.nextWorkerId === workerKey) { + if (this.pool.workers.length === 0) { + this.nextWorkerId = 0 + } else { + this.nextWorkerId = + this.nextWorkerId > this.pool.workers.length - 1 + ? this.pool.workers.length - 1 + : this.nextWorkerId + } + } + return true } }