X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=1a05f633250adb8e88c72a63cda565c3265205bc;hb=58399427588adb63380e6bfe955dbdf4ea8ea8a5;hp=207a8598e3bb9d401ca653eee8b232b4f8f52ee7;hpb=aa9eede876376ffbb6d8585192f3865849252f5c;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 207a8598..1a05f633 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -1,4 +1,5 @@ import { EventEmitter } from 'node:events' +import { type TransferListItem } from 'node:worker_threads' import type { ErrorHandler, ExitHandler, @@ -74,8 +75,8 @@ export interface PoolInfo { readonly busyWorkerNodes: number readonly executedTasks: number readonly executingTasks: number - readonly queuedTasks: number - readonly maxQueuedTasks: number + readonly queuedTasks?: number + readonly maxQueuedTasks?: number readonly failedTasks: number readonly runTime?: { readonly minimum: number @@ -192,11 +193,16 @@ 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 optional task input data for the specified task function. This can only be structured-cloneable data. + * @param name - The optional name of the task function to execute. If not specified, the default task function will be executed. + * @param transferList - An optional array of transferable objects to transfer ownership of. Ownership of the transferred objects is given to the pool's worker_threads worker and they should not be used in the main thread afterwards. * @returns Promise that will be fulfilled when the task is completed. */ - readonly execute: (data?: Data, name?: string) => Promise + readonly execute: ( + data?: Data, + name?: string, + transferList?: TransferListItem[] + ) => Promise /** * Terminates all workers in this pool. */