2021-07-03 07:35:02 +10:00
|
|
|
import ipc from '../../../node-ipc.js';
|
2014-02-22 20:13:31 +11:00
|
|
|
|
|
|
|
/***************************************\
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-02-22 20:13:31 +11:00
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-02-22 20:13:31 +11:00
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'world';
|
2014-02-22 20:13:31 +11:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
|
|
|
|
ipc.serve(
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
2014-03-01 23:13:06 +11:00
|
|
|
'app.message',
|
2014-02-22 20:13:31 +11:00
|
|
|
function(data,socket){
|
2014-02-28 07:23:53 +11:00
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
2014-03-01 23:13:06 +11:00
|
|
|
'app.message',
|
|
|
|
{
|
|
|
|
id : ipc.config.id,
|
|
|
|
message : data.message+' world!'
|
|
|
|
}
|
2014-02-22 20:13:31 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-10 21:29:15 +11:00
|
|
|
|
2014-02-22 20:13:31 +11:00
|
|
|
|
2014-02-28 07:23:53 +11:00
|
|
|
ipc.server.start();
|