Initial comment conversion to TSDoc
[poolifier.git] / src / pools / selection-strategies / less-recently-used-worker-choice-strategy.ts
index 2bfbb15b8e4e6e26235a82900e865bd5a7e570e2..e62d9cdf83bd9a5ae472bc08296dfbe18b96e806 100644 (file)
@@ -4,21 +4,21 @@ import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
 /**
  * Selects the less recently used worker.
  *
- * @template Worker Type of worker which manages the strategy.
- * @template Data Type of data sent to the worker. This can only be serializable data.
- * @template Response Type of response of execution. This can only be serializable data.
+ * @typeParam Worker - Type of worker which manages the strategy.
+ * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
+ * @typeParam Response - Type of response of execution. This can only be serializable data.
  */
 export class LessRecentlyUsedWorkerChoiceStrategy<
   Worker extends IPoolWorker,
   Data,
   Response
 > extends AbstractWorkerChoiceStrategy<Worker, Data, Response> {
-  /** @inheritDoc */
+  /** {@inheritDoc} */
   public reset (): boolean {
     return true
   }
 
-  /** @inheritDoc */
+  /** {@inheritDoc} */
   public choose (): Worker {
     let minNumberOfRunningTasks = Infinity
     // A worker is always found because it picks the one with fewer tasks