MessageChannelMain
MessageChannelMain
はメインプロセス側における DOM の MessageChannel
オブジェクトです。 Its singular function is to create a pair of connected MessagePortMain
objects.
チャンネルメッセージングの使用方法の詳細については、チャンネルメッセージング API のドキュメントを参照してください。
Class: MessageChannelMain
メインプロセス内でチャンネルメッセージングをするためのチャンネルインターフェイスです。
Process: Main
サンプル:
// メインプロセス
const { BrowserWindow, MessageChannelMain } = require('electron')
const w = new BrowserWindow()
const { port1, port2 } = new MessageChannelMain()
w.webContents.postMessage('port', null, [port2])
port1.postMessage({ some: 'message' })
// レンダラープロセス
const { ipcRenderer } = require('electron')
ipcRenderer.on('port', (e) => {
// e.ports はこのメッセージとともに送信されたポートのリストです。
e.ports[0].onmessage = (messageEvent) => {
console.log(messageEvent.data)
}
})
インスタンスプロパティ
channel.port1
A MessagePortMain
property.
channel.port2
A MessagePortMain
property.