Type of data this worker receives from pool's execution. This can only be serializable data.
Type of response the worker sends back to the main thread. This can only be serializable data.
Constructs a new poolifier thread worker.
Function processed by the worker when the pool's execution
function is invoked.
Options for the worker.
Protected
Optional
Readonly
aliveHandler id of the aliveInterval
worker alive check.
Protected
Readonly
isWhether this is the main worker or not.
Protected
lastTimestamp of the last task processed by this worker.
Protected
mainReference to main worker.
Protected
Readonly
optsOptions for the worker.
Binds the given function to execute to this AsyncResource
's scope.
The returned function will have an asyncResource
property referencing
the AsyncResource
to which the function is bound.
v14.8.0, v12.19.0
The function to bind to the current AsyncResource
.
Protected
checkCall all destroy
hooks. This should only ever be called once. An error will
be thrown if it is called more than once. This must be manually called. If
the resource is left to be collected by the GC then the destroy
hooks will
never be called.
A reference to asyncResource
.
Protected
getProtected
handleProtected
messageWorker message listener.
Message received.
Function processed by the worker when the pool's execution
function is invoked.
Protected
runRuns the given function synchronously.
Function that will be executed.
Optional
data: DataInput data for the given function.
Protected
runRuns the given function asynchronously.
Function that will be executed.
Optional
data: DataInput data for the given function.
Call the provided function with the provided arguments in the execution context of the async resource. This will establish the context, trigger the AsyncHooks before callbacks, call the function, trigger the AsyncHooks after callbacks, and then restore the original execution context.
v9.6.0
The function to call in the execution context of this async resource.
Rest
...args: any[]Optional
thisArg: ThisThe receiver to be used for the function call.
Rest
...args: any[]Optional arguments to pass to the function.
Protected
sendSends a message to the main worker.
The response message.
Static
bindBinds the given function to the current execution context.
The returned function will have an asyncResource
property referencing
the AsyncResource
to which the function is bound.
v14.8.0, v12.19.0
The function to bind to the current execution context.
Optional
type: stringAn optional name to associate with the underlying AsyncResource
.
Optional
thisArg: ThisArgGenerated using TypeDoc
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