在分叉进程_channel
的对象中有一个键名。process
密钥包含以下内容
_channel: {
fd: null,
writeQueueSize: 0,
buffering: false,
onread: [Function],
sockets: {
got: {},
send: {}
}
}
node.js 的源代码说该setupChannel
函数设置了 this ( _channel
) 键。
我想知道假设要确定该进程是主进程还是分叉进程,我们需要检查_channel
密钥是否存在是否正确?
还有 Node.js 源代码的文档吗?