mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
15164cebce
Doc deprecate isMaster and setupMaster in favor of isPrimary and setupPrimary. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/36478 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
31 lines
819 B
JavaScript
31 lines
819 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const cluster = require('cluster');
|
|
const assert = require('assert');
|
|
|
|
if (cluster.isPrimary) {
|
|
const worker = cluster.fork();
|
|
|
|
assert.strictEqual(worker.isConnected(), true);
|
|
|
|
worker.on('disconnect', common.mustCall(() => {
|
|
assert.strictEqual(worker.isConnected(), false);
|
|
}));
|
|
|
|
worker.on('message', function(msg) {
|
|
if (msg === 'readyToDisconnect') {
|
|
worker.disconnect();
|
|
}
|
|
});
|
|
} else {
|
|
function assertNotConnected() {
|
|
assert.strictEqual(cluster.worker.isConnected(), false);
|
|
}
|
|
|
|
assert.strictEqual(cluster.worker.isConnected(), true);
|
|
cluster.worker.on('disconnect', common.mustCall(assertNotConnected));
|
|
cluster.worker.process.on('disconnect', common.mustCall(assertNotConnected));
|
|
|
|
process.send('readyToDisconnect');
|
|
}
|