Type of worker which manages this pool.
Type of data sent to the worker. This can only be structured-cloneable data.
Type of execution response. This can only be structured-cloneable data.
Readonly
destroyTerminates all workers in this pool.
Optional
Readonly
emitterEmitter on which events can be listened to.
Events that can currently be listened to:
'ready'
: Emitted when the number of workers created in the pool has reached the minimum size expected and are ready.'busy'
: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing at least one task.'full'
: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected.destroy
': Emitted when the pool is destroyed.'error'
: Emitted when an uncaught error occurs.'taskError'
: Emitted when an error occurs while executing a task.'backPressure'
: Emitted when all worker nodes have back pressure (i.e. their tasks queue is full: queue size >= pool maximum size^2).Readonly
enableEnables/disables the worker tasks queue in this pool.
Whether to enable or disable the worker tasks queue.
Optional
tasksQueueOptions: TasksQueueOptionsThe worker tasks queue options.
Readonly
executeExecutes the specified function in the worker constructor with the task data input parameter.
Optional
data: DataThe optional task input data for the specified task function. This can only be structured-cloneable data.
Optional
name: stringThe optional name of the task function to execute. If not specified, the default task function will be executed.
Optional
transferList: TransferListItem[]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.
Promise that will be fulfilled when the task is completed.
Readonly
hasInternal
Whether the worker node has back pressure (i.e. its tasks queue is full).
The worker node key.
true
if the worker node has back pressure, false
otherwise.
Readonly
infoPool information.
Readonly
listLists the names of task function available in this pool.
The names of task function available in this pool.
Readonly
setSets the worker tasks queue options in this pool.
The worker tasks queue options.
Readonly
setSets the worker choice strategy in this pool.
The worker choice strategy.
Optional
workerChoiceStrategyOptions: WorkerChoiceStrategyOptionsThe worker choice strategy options.
Readonly
setSets the worker choice strategy options in this pool.
The worker choice strategy options.
Readonly
Internal
workerPool worker nodes.
Generated using TypeDoc
Contract definition for a poolifier pool.