X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fselection-strategies%2Fselection-strategies-types.ts;h=c098768533fcced20246044d5411ad1ebb7bb76c;hb=bf90656cacf88d2cfdd5b3262086ba55b2ff9818;hp=499b8e489e744a3fad453391b8e4e664c90eac94;hpb=a6f7f1b40b3591b19a58f69b22e751c4c4311522;p=poolifier.git diff --git a/src/pools/selection-strategies/selection-strategies-types.ts b/src/pools/selection-strategies/selection-strategies-types.ts index 499b8e48..c0987685 100644 --- a/src/pools/selection-strategies/selection-strategies-types.ts +++ b/src/pools/selection-strategies/selection-strategies-types.ts @@ -1,5 +1,3 @@ -import type { IPoolWorker } from '../pool-worker' - /** * Enumeration of worker choice strategies. */ @@ -9,9 +7,13 @@ export const WorkerChoiceStrategies = Object.freeze({ */ ROUND_ROBIN: 'ROUND_ROBIN', /** - * Less recently used worker selection strategy. + * Less used worker selection strategy. + */ + LESS_USED: 'LESS_USED', + /** + * Less busy worker selection strategy. */ - LESS_RECENTLY_USED: 'LESS_RECENTLY_USED', + LESS_BUSY: 'LESS_BUSY', /** * Fair share worker selection strategy. */ @@ -30,16 +32,14 @@ export type WorkerChoiceStrategy = keyof typeof WorkerChoiceStrategies /** * Pool tasks usage statistics requirements. */ -export type RequiredStatistics = { +export interface RequiredStatistics { runTime: boolean } /** * Worker choice strategy interface. - * - * @template Worker Type of worker which manages the strategy. */ -export interface IWorkerChoiceStrategy { +export interface IWorkerChoiceStrategy { /** * Is the pool attached to the strategy dynamic?. */ @@ -51,9 +51,15 @@ export interface IWorkerChoiceStrategy { /** * Resets strategy internals (counters, statistics, etc.). */ - reset(): boolean + reset: () => boolean + /** + * Chooses a worker in the pool and returns its key. + */ + choose: () => number /** - * Chooses a worker in the pool. + * Removes a worker reference from strategy internals. + * + * @param workerKey - The worker key. */ - choose(): Worker + remove: (workerKey: number) => boolean }