2020-03-12 01:07:54 +00:00
|
|
|
# MessageChannelMain
|
|
|
|
|
|
|
|
`MessageChannelMain` is the main-process-side equivalent of the DOM
|
|
|
|
[`MessageChannel`][] object. Its singular function is to create a pair of
|
|
|
|
connected [`MessagePortMain`](message-port-main.md) objects.
|
|
|
|
|
|
|
|
See the [Channel Messaging API][] documentation for more information on using
|
|
|
|
channel messaging.
|
|
|
|
|
|
|
|
## Class: MessageChannelMain
|
|
|
|
|
2020-04-02 18:28:43 +00:00
|
|
|
Process: [Main](../glossary.md#main-process)
|
|
|
|
|
2020-03-12 01:07:54 +00:00
|
|
|
Example:
|
2020-11-05 22:12:43 +00:00
|
|
|
|
2020-03-12 01:07:54 +00:00
|
|
|
```js
|
2020-09-28 17:58:32 +00:00
|
|
|
// Main process
|
2020-03-12 01:07:54 +00:00
|
|
|
const { port1, port2 } = new MessageChannelMain()
|
|
|
|
w.webContents.postMessage('port', null, [port2])
|
|
|
|
port1.postMessage({ some: 'message' })
|
2020-09-28 17:58:32 +00:00
|
|
|
|
|
|
|
// Renderer process
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
ipcRenderer.on('port', (e) => {
|
|
|
|
// e.ports is a list of ports sent along with this message
|
|
|
|
e.ports[0].on('message', (messageEvent) => {
|
|
|
|
console.log(messageEvent.data)
|
|
|
|
})
|
|
|
|
})
|
2020-03-12 01:07:54 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Instance Properties
|
|
|
|
|
|
|
|
#### `channel.port1`
|
|
|
|
|
|
|
|
A [`MessagePortMain`](message-port-main.md) property.
|
|
|
|
|
|
|
|
#### `channel.port2`
|
|
|
|
|
|
|
|
A [`MessagePortMain`](message-port-main.md) property.
|
|
|
|
|
|
|
|
[`MessageChannel`]: https://developer.mozilla.org/en-US/docs/Web/API/MessageChannel
|
|
|
|
[Channel Messaging API]: https://developer.mozilla.org/en-US/docs/Web/API/Channel_Messaging_API
|