Worker
A Worker
object contains all public information and method about a worker. In the primary it can be obtained using cluster.workers
. In a worker it can be obtained using cluster.worker
.
Since
v0.7.0
Properties
This property is true
if the worker exited due to .disconnect()
. If the worker exited any other way, it is false
. If the worker has not exited, it is undefined
.
All workers are created using child_process.fork()
, the returned object from this function is stored as .process
. In a worker, the global process
is stored.
Functions
events.EventEmitter
In a worker, this function will close all servers, wait for the 'close'
event on those servers, and then disconnect the IPC channel.
Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbol
s.
Returns the current max listener value for the EventEmitter
which is either set by emitter.setMaxListeners(n)
or defaults to {@link defaultMaxListeners}.
This function returns true
if the worker is connected to its primary via its IPC channel, false
otherwise. A worker is connected to its primary after it has been created. It is disconnected after the 'disconnect'
event is emitted.
Send a message to a worker or primary, optionally with a handle.
By default EventEmitter
s will print a warning if more than 10
listeners are added for a particular event. This is a useful default that helps finding memory leaks. The emitter.setMaxListeners()
method allows the limit to be modified for this specific EventEmitter
instance. The value can be set to Infinity
(or 0
) to indicate an unlimited number of listeners.