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=4d302f3defb1e7d5619d37693daf4104c944f377;hpb=10fcfaf49c0b6d6f0e1d137eeba1e9d805c9a815;p=poolifier.git diff --git a/src/pools/selection-strategies/selection-strategies-types.ts b/src/pools/selection-strategies/selection-strategies-types.ts index 4d302f3d..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 { AbstractPoolWorker } from '../abstract-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. */ @@ -28,28 +30,36 @@ export const WorkerChoiceStrategies = Object.freeze({ export type WorkerChoiceStrategy = keyof typeof WorkerChoiceStrategies /** - * Tasks usage statistics requirements. + * 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?. */ - isDynamicPool: boolean + readonly isDynamicPool: boolean + /** + * Required pool tasks usage statistics. + */ + readonly requiredStatistics: RequiredStatistics + /** + * Resets strategy internals (counters, statistics, etc.). + */ + reset: () => boolean /** - * Required tasks usage statistics. + * Chooses a worker in the pool and returns its key. */ - requiredStatistics: RequiredStatistics + choose: () => number /** - * Choose a worker in the pool. + * Removes a worker reference from strategy internals. + * + * @param workerKey - The worker key. */ - choose(): Worker + remove: (workerKey: number) => boolean }