refactor: switch Date.now() -> performance.now() where appropriate
[poolifier.git] / src / pools / selection-strategies / abstract-worker-choice-strategy.ts
index b0a624da9d5afb7b563d2a069e2b04866b02163a..8ab3d360ca67f210db221fcdd424039799cf6668 100644 (file)
@@ -23,7 +23,8 @@ export abstract class AbstractWorkerChoiceStrategy<
   /** @inheritDoc */
   public requiredStatistics: RequiredStatistics = {
     runTime: false,
-    avgRunTime: false
+    avgRunTime: false,
+    medRunTime: false
   }
 
   /**