From: Jérôme Benoit Date: Wed, 31 May 2023 09:31:13 +0000 (+0200) Subject: feat: add helper to get the worker wait time in worker choice strategies X-Git-Tag: v2.5.0~7 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=ef680bb86320e17178912f48db6cad9bcc4cb2e2;hp=ace229a1b5029d3acaeeb4e8abdab415de5318f1;p=poolifier.git feat: add helper to get the worker wait time in worker choice strategies code Signed-off-by: Jérôme Benoit --- diff --git a/src/pools/selection-strategies/abstract-worker-choice-strategy.ts b/src/pools/selection-strategies/abstract-worker-choice-strategy.ts index efa9578d..2026e674 100644 --- a/src/pools/selection-strategies/abstract-worker-choice-strategy.ts +++ b/src/pools/selection-strategies/abstract-worker-choice-strategy.ts @@ -112,6 +112,20 @@ export abstract class AbstractWorkerChoiceStrategy< : this.pool.workerNodes[workerNodeKey].tasksUsage.avgRunTime } + /** + * Gets the worker task wait time. + * If the required statistics are `avgWaitTime`, the average wait time is returned. + * If the required statistics are `medWaitTime`, the median wait time is returned. + * + * @param workerNodeKey - The worker node key. + * @returns The worker task wait time. + */ + protected getWorkerWaitTime (workerNodeKey: number): number { + return this.requiredStatistics.medWaitTime + ? this.pool.workerNodes[workerNodeKey].tasksUsage.medWaitTime + : this.pool.workerNodes[workerNodeKey].tasksUsage.avgWaitTime + } + /** * Finds the first free worker node key based on the number of tasks the worker has applied. *