X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fselection-strategies%2Fselection-strategies-types.ts;fp=src%2Fpools%2Fselection-strategies%2Fselection-strategies-types.ts;h=ebd740567b61bac3a925bfe6a6d2419310bd7487;hb=1dfe8965df029a366c040227fb61ae47b3d59a3a;hp=9bf28ac69c962e5203500bc6e3af5ae0d1c6ed25;hpb=c3c5b1b661042ee1e3f8d04a01974dcfe7bd6a82;p=poolifier.git diff --git a/src/pools/selection-strategies/selection-strategies-types.ts b/src/pools/selection-strategies/selection-strategies-types.ts index 9bf28ac6..ebd74056 100644 --- a/src/pools/selection-strategies/selection-strategies-types.ts +++ b/src/pools/selection-strategies/selection-strategies-types.ts @@ -14,6 +14,12 @@ export const WorkerChoiceStrategies = Object.freeze({ * Least busy worker selection strategy. */ LEAST_BUSY: 'LEAST_BUSY', + /** + * Least ELU worker selection strategy. + * + * @experimental + */ + LEAST_ELU: 'LEAST_ELU', /** * Fair share worker selection strategy. */