2021-07-03 07:35:02 +10:00
|
|
|
import ipc from '../../../node-ipc.js';
|
2015-08-23 15:46:55 +10:00
|
|
|
|
|
|
|
/***************************************\
|
|
|
|
*
|
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
|
|
|
*
|
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'world';
|
2015-08-23 15:46:55 +10:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
ipc.config.rawBuffer=true;
|
|
|
|
ipc.config.encoding='ascii';
|
|
|
|
|
|
|
|
ipc.serve(
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
|
|
|
'connect',
|
|
|
|
function(socket){
|
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
|
|
|
'hello'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.server.on(
|
|
|
|
'data',
|
|
|
|
function(data,socket){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message', data,data.toString());
|
2015-08-23 15:46:55 +10:00
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
|
|
|
'goodbye'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.server.start();
|