X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=c6fbce43aba1d6a31d825a1eff80db8aae49ee12;hb=2f8c5b5c1182f698efe07d327359bef934af3a29;hp=6f677da8ba64d695e5b4b82f904f4b21ef1c7208;hpb=675bb8097982bce5bbe64e6332340373aa4aed3f;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 6f677da8..c6fbce43 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -27,7 +27,7 @@ export interface PoolOptions { */ exitHandler?: ExitHandler /** - * The work choice strategy to use in this pool. + * The worker choice strategy to use in this pool. */ workerChoiceStrategy?: WorkerChoiceStrategy /** @@ -46,7 +46,7 @@ export interface PoolOptions { */ export interface IPool { /** - * Perform the task specified in the constructor with the data parameter. + * Performs the task specified in the constructor with the data parameter. * * @param data The input for the specified task. This can only be serializable data. * @returns Promise that will be resolved when the task is successfully completed. @@ -57,7 +57,7 @@ export interface IPool { */ destroy(): Promise /** - * Set the worker choice strategy in this pool. + * Sets the worker choice strategy in this pool. * * @param workerChoiceStrategy The worker choice strategy. */