X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool-internal.ts;h=3f35ec13e25b79e67c3cb2c9084843adcbf63f99;hb=2f8c5b5c1182f698efe07d327359bef934af3a29;hp=6e2850a892d8d63f024e09d6db40e23b43129c06;hpb=ea7a90d36354a4e1c833271571c6f3eb80428600;p=poolifier.git diff --git a/src/pools/pool-internal.ts b/src/pools/pool-internal.ts index 6e2850a8..3f35ec13 100644 --- a/src/pools/pool-internal.ts +++ b/src/pools/pool-internal.ts @@ -84,7 +84,7 @@ export interface IPoolInternal< readonly numberOfRunningTasks: number /** - * Find a free worker based on the number of tasks the worker has applied. + * Finds a free worker based on the number of tasks the worker has applied. * * If a worker is found with `0` running tasks, it is detected as free and returned. * @@ -95,7 +95,7 @@ export interface IPoolInternal< findFreeWorker(): Worker | false /** - * Get worker index. + * Gets worker index. * * @param worker The worker. * @returns The worker index. @@ -103,7 +103,7 @@ export interface IPoolInternal< getWorkerIndex(worker: Worker): number /** - * Get worker running tasks. + * Gets worker running tasks. * * @param worker The worker. * @returns The number of tasks currently running on the worker. @@ -111,7 +111,7 @@ export interface IPoolInternal< getWorkerRunningTasks(worker: Worker): number | undefined /** - * Get worker average tasks runtime. + * Gets worker average tasks runtime. * * @param worker The worker. * @returns The average tasks runtime on the worker.