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=91ceb5bc9ade9e8d8df8be244c54fd105b76771a;hpb=78ab25556596c9ca877bb08407559b8156abc819;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 91ceb5bc..29b05fa5 100644 --- a/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/round-robin-worker-choice-strategy.ts @@ -15,19 +15,19 @@ export class RoundRobinWorkerChoiceStrategy< Response = unknown > extends AbstractWorkerChoiceStrategy - implements IWorkerChoiceStrategy { + implements IWorkerChoiceStrategy { /** * Id of the next worker. */ private nextWorkerId: number = 0 - /** {@inheritDoc} */ + /** @inheritDoc */ public reset (): boolean { this.nextWorkerId = 0 return true } - /** {@inheritDoc} */ + /** @inheritDoc */ public choose (): number { const chosenWorkerKey = this.nextWorkerId this.nextWorkerId = @@ -37,7 +37,7 @@ export class RoundRobinWorkerChoiceStrategy< return chosenWorkerKey } - /** {@inheritDoc} */ + /** @inheritDoc */ public remove (workerKey: number): boolean { if (this.nextWorkerId === workerKey) { if (this.pool.workers.length === 0) {