electron/docs-translations/ko-KR/api/ipc-main.md

90 lines
3.3 KiB
Markdown
Raw Normal View History

2015-11-11 00:44:33 +00:00
# ipcMain
2016-01-21 17:39:37 +00:00
`ipcMain` 모듈은 [EventEmitter](https://nodejs.org/api/events.html) 클래스의
인스턴스입니다. 메인 프로세스에서 사용하면, 랜더러 프로세스(웹 페이지)에서 전달된
동기, 비동기 메시지를 주고 받는 방법을 제공합니다. 랜더러 프로세스에서 메시지를 전달하면
이 모듈을 통해 메시지를 받을 수 있습니다.
2015-11-11 00:44:33 +00:00
## 메시지 전송
물론 메시지를 받는 것 말고도 메인 프로세스에서 랜더러 프로세스로 보내는 것도 가능합니다.
자세한 내용은 [webContents.send](web-contents.md#webcontentssendchannel-arg1-arg2-)를
참고하세요.
2015-11-11 00:44:33 +00:00
* 메시지를 전송할 때 이벤트 이름은 `channel`이 됩니다.
* 메시지에 동기로 응답할 땐 반드시 `event.returnValue`를 설정해야 합니다.
* 메시지를 비동기로 응답할 땐 `event.sender.send(...)` 메서드를 사용할 수 있습니다.
다음 예제는 랜더러 프로세스와 메인 프로세스간에 메시지를 전달하고 받는 예제입니다:
```javascript
// 메인 프로세스
const ipcMain = require('electron').ipcMain;
2015-11-22 14:16:56 +00:00
ipcMain.on('asynchronous-message', function(event, arg) {
console.log(arg); // "ping" 출력
2015-11-11 00:44:33 +00:00
event.sender.send('asynchronous-reply', 'pong');
});
2015-11-22 14:16:56 +00:00
ipcMain.on('synchronous-message', function(event, arg) {
console.log(arg); // "ping" 출력
2015-11-11 00:44:33 +00:00
event.returnValue = 'pong';
});
```
```javascript
// 랜더러 프로세스 (웹 페이지)
const ipcRenderer = require('electron').ipcRenderer;
console.log(ipc.sendSync('synchronous-message', 'ping')); // "pong" 출력
2015-11-11 00:44:33 +00:00
2015-11-22 14:16:56 +00:00
ipcRenderer.on('asynchronous-reply', function(arg) {
console.log(arg); // "pong" 출력
2015-11-11 00:44:33 +00:00
});
2015-11-22 14:16:56 +00:00
ipcRenderer.send('asynchronous-message', 'ping');
2015-11-11 00:44:33 +00:00
```
## 메시지 리스닝
`ipcMain`은 다음과 같은 이벤트 리스닝 메서드를 가지고 있습니다:
2015-11-22 14:16:56 +00:00
### `ipcMain.on(channel, callback)`
2015-11-11 00:44:33 +00:00
* `channel` String - 이벤트 이름
* `callback` Function
2016-01-21 17:39:37 +00:00
이벤트가 발생하면 `event` 객체와 임의 메시지와 함께 `callback`이 호출됩니다.
2015-11-11 00:44:33 +00:00
2016-01-21 17:39:37 +00:00
### `ipcMain.removeListener(channel, callback)`
* `channel` String - 이벤트의 이름
* `callback` Function - `ipcMain.on(channel, callback)`에서 사용한 함수의 레퍼런스
메시지 수신을 완료한 후, 더 이상의 콜백이 필요하지 않을 때 또는 몇 가지 이유로 채널의
메시지 전송을 멈출수 없을 때, 이 함수를 통해 지정한 채널에 대한 콜백을 삭제할 수
있습니다.
### `ipcMain.removeAllListeners(channel)`
* `channel` String - 이벤트의 이름
이 ipc 채널에 등록된 *모든* 핸들러들을 삭제합니다.
### `ipcMain.once(channel, callback)`
`ipcMain.on()` 대신 이 함수를 사용할 경우 핸들러가 단 한 번만 호출됩니다.
`callback`이 한 번 호출된 이후 활성화되지 않습니다.
## IPC Event
2015-11-11 00:44:33 +00:00
`callback`에서 전달된 `event` 객체는 다음과 같은 메서드와 속성을 가지고 있습니다:
2015-11-22 14:16:56 +00:00
### `event.returnValue`
2015-11-11 00:44:33 +00:00
이 메시지를 지정하면 동기 메시지를 전달합니다.
2015-11-22 14:16:56 +00:00
### `event.sender`
2015-11-11 00:44:33 +00:00
메시지를 보낸 `webContents` 객체를 반환합니다. `event.sender.send` 메서드를 통해
비동기로 메시지를 전달할 수 있습니다. 자세한 내용은
[webContents.send](web-contents.md#webcontentssendchannel-arg1-arg2-)를
참고하세요.