Type of main worker.
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 worker. This can only be serializable data.
Constructs a new poolifier worker.
The type of async event.
Whether this is the main worker or not.
Function processed by the worker when the pool's execution
function is invoked.
Reference to main worker.
Options for the worker.
Whether the worker is working asynchronously or not.
Handler ID of the interval
alive check.
The kill behavior set as option on the Worker constructor or a default value.
Timestamp of the last task processed by this worker.
The maximum time to keep this worker alive while idle. The pool automatically checks and terminates this worker when the time expires.
the unique ID assigned to this AsyncResource instance.
Binds the given function to execute to this AsyncResource
's scope.
The function to bind to the current AsyncResource
.
Check to see if the worker should be terminated, because its living too long.
Check if the fn
parameter is passed to the constructor.
The function that should be defined.
Call AsyncHooks destroy callbacks.
Returns the main worker.
Reference to the main worker.
Handle an error and convert it to a string so it can be sent back to the main worker.
The error raised by the worker.
Message of the error.
Run the given function synchronously.
Function that will be executed.
Input data for the given function.
Run the given function asynchronously.
Function that will be executed.
Input 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.
The function to call in the execution context of this async resource.
The receiver to be used for the function call.
Optional arguments to pass to the function.
Send a message to the main worker.
The response message.
the trigger ID for this AsyncResource instance.
Binds the given function to the current execution context.
The function to bind to the current execution context.
An optional name to associate with the underlying AsyncResource
.
Generated using TypeDoc
Base class containing some shared logic for all poolifier workers.