X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=45915e5581085b6cced9f5d51635205ee9da4556;hb=fcb46565163bb679d3abdab62b44d736765935b5;hp=4b9f40f473550f90597ec8b6670f422dbed5c666;hpb=c62a9bbc12416e26acbb3b86b5090d6186b14b60;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 4b9f40f4..45915e55 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -192,8 +192,8 @@ export interface IPool< /** * Executes the specified function in the worker constructor with the task data input parameter. * - * @param data - The task input data for the specified worker function. This can only be structured-cloneable data. - * @param name - The name of the worker function to execute. If not specified, the default worker function will be executed. + * @param data - The task input data for the specified task function. This can only be structured-cloneable data. + * @param name - The name of the task function to execute. If not specified, the default task function will be executed. * @returns Promise that will be fulfilled when the task is completed. */ readonly execute: (data?: Data, name?: string) => Promise