當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js process.channel用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js process.channel Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。