Type of data this worker receives from pool's execution. This can only be structured-cloneable data.
Type of response the worker sends back to the main thread. This can only be structured-cloneable data.
Constructs a new poolifier thread worker.
Task function(s) processed by the worker when the pool's execute
method is invoked.
Options for the worker.
Protected
Optional
activeHandler id of the activeInterval
worker activity check.
Protected
Readonly
isWhether this is the main worker or not.
Protected
lastTimestamp of the last task processed by this worker.
Protected
optsOptions for the worker.
Protected
Optional
statisticsPerformance statistics computation requirements.
Protected
taskTask abort functions processed by the worker when task operation 'abort' is received.
Protected
taskTask function object(s) processed by the worker when the pool's execute
method is invoked.
Adds a task function to the worker. If a task function with the same name already exists, it is replaced.
The name of the task function to add.
The task function to add.
Whether the task function was added or not.
Protected
getReturns the main worker.
Reference to the main worker.
https://nodejs.org/api/errors.html#class-error If the main worker is not set.
Protected
handleHandles a worker error.
The error raised by the worker.
The worker error object.
Protected
handleHandles a kill message sent by the main worker.
The kill message.
Protected
handleHandles the ready message sent by the main worker.
The ready message.
Protected
handleChecks if the worker has a task function with the given name.
The name of the task function to check.
Whether the worker has a task function with the given name or not.
Lists the properties of the worker's task functions.
The properties of the worker's task functions.
Protected
messageRemoves a task function from the worker.
The name of the task function to remove.
Whether the task function existed and was removed or not.
Protected
Readonly
runProtected
Readonly
runRuns the given task function asynchronously.
Task function that will be executed.
Input data for the task function.
Protected
Readonly
runRuns the given task function synchronously.
Task function that will be executed.
Input data for the task function.
Protected
sendSends task functions properties to the main worker.
Protected
Readonly
sendSends a message to main worker.
The response message.
Sets the default task function to use in the worker.
The name of the task function to use as default task function.
Whether the default task function was set or not.
A thread worker used by a poolifier
ThreadPool
.When this worker is inactive for more than the given
maxInactiveTime
, it will send a termination request to its main thread.If you use a
DynamicThreadPool
the extra workers that were created will be terminated, but the minimum number of workers will be guaranteed.Author
Alessandro Pio Ardizio
Since
0.0.1