跳至主要内容

parentPort

与父进程通信的接口。

进程:实用程序

parentPort 是一个 EventEmitter此对象未从 'electron' 模块导出。它仅作为 Electron API 中进程对象的属性可用。

// Main process
const child = utilityProcess.fork(path.join(__dirname, 'test.js'))
child.postMessage({ message: 'hello' })
child.on('message', (data) => {
console.log(data) // hello world!
})

// Child process
process.parentPort.on('message', (e) => {
process.parentPort.postMessage(`${e.data} world!`)
})

事件

parentPort 对象发出以下事件

事件:'message'

返回值

  • messageEvent 对象
    • data 任何
    • ports MessagePortMain[]

当进程收到消息时发出。在此端口上接收的消息将排队,直到为此事件注册处理程序。

方法

parentPort.postMessage(message)

  • message 任何

从进程向其父进程发送消息。