mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
908292cf1f
PR-URL: https://github.com/nodejs/node/pull/27146 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const { Object } = primordials;
|
|
|
|
const EventEmitter = require('events');
|
|
|
|
module.exports = Worker;
|
|
|
|
// Common Worker implementation shared between the cluster master and workers.
|
|
function Worker(options) {
|
|
if (!(this instanceof Worker))
|
|
return new Worker(options);
|
|
|
|
EventEmitter.call(this);
|
|
|
|
if (options === null || typeof options !== 'object')
|
|
options = {};
|
|
|
|
this.exitedAfterDisconnect = undefined;
|
|
|
|
this.state = options.state || 'none';
|
|
this.id = options.id | 0;
|
|
|
|
if (options.process) {
|
|
this.process = options.process;
|
|
this.process.on('error', (code, signal) =>
|
|
this.emit('error', code, signal)
|
|
);
|
|
this.process.on('message', (message, handle) =>
|
|
this.emit('message', message, handle)
|
|
);
|
|
}
|
|
}
|
|
|
|
Object.setPrototypeOf(Worker.prototype, EventEmitter.prototype);
|
|
Object.setPrototypeOf(Worker, EventEmitter);
|
|
|
|
Worker.prototype.kill = function() {
|
|
this.destroy.apply(this, arguments);
|
|
};
|
|
|
|
Worker.prototype.send = function() {
|
|
return this.process.send.apply(this.process, arguments);
|
|
};
|
|
|
|
Worker.prototype.isDead = function() {
|
|
return this.process.exitCode != null || this.process.signalCode != null;
|
|
};
|
|
|
|
Worker.prototype.isConnected = function() {
|
|
return this.process.connected;
|
|
};
|