process.channel是Process模块中Process类的内置应用程序编程接口,用于获取对IPC通道的引用。如果不存在IPC通道,则此属性未定义。
用法:
const process.channel
参数:此api不使用任何参数作为参数。
返回值:此api返回对IPC通道的引用。如果不存在IPC通道,则此属性未定义。
范例1:
index.js
// Node.js program to demonstrate the
// Process.channel Property
// Importing process modules
const cp = require('child_process');
// Getting child process reference
const process = cp.fork(`${__dirname}/sub.js`);
// Causes the child to print:
// CHILD got message:{ hello:'world' }
process.send({ hello:'world' });
console.log(process.channel)
sub.js
process.on('message', (m) => {
console.log('CHILD got message:', m);
process.exit()
});
使用以下命令运行index.js文件:
node index.js
输出:
Control { _events:[Object:null prototype] {}, _eventsCount:0, _maxListeners:undefined, [Symbol(kCapture)]:false } CHILD got message:{ hello:'world' }
范例2:
index.js
// Node.js program to demonstrate the
// Process.channel Property
// Importing process modules
const process = require('process');
// Getting process channel
if(process.channel)
console.log("Process Channel exist")
else
console.log("Process Channel doesn't exist")
使用以下命令运行index.js文件:
输出:
Process Channel doesn't exist
参考: https://nodejs.org/dist/latest-v16.x/docs/api/process.html#process_process_channel
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js process.channel Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。