2016-03-23 18:07:37 +11:00
|
|
|
const ipc=require('../../../node-ipc');
|
2014-02-22 20:13:31 +11:00
|
|
|
|
|
|
|
/***************************************\
|
2015-09-27 20:32:14 +10:00
|
|
|
*
|
2014-02-22 20:13:31 +11:00
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
2015-09-27 20:32:14 +10:00
|
|
|
*
|
2014-02-22 20:13:31 +11:00
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'hello';
|
2014-09-01 03:56:53 +10:00
|
|
|
ipc.config.retry = 1000;
|
2014-02-22 20:13:31 +11:00
|
|
|
|
|
|
|
ipc.connectTo(
|
|
|
|
'world',
|
|
|
|
function(){
|
|
|
|
ipc.of.world.on(
|
|
|
|
'connect',
|
|
|
|
function(){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('## connected to world ##', ipc.config.delay);
|
2014-02-22 20:13:31 +11:00
|
|
|
ipc.of.world.emit(
|
2014-03-01 23:13:06 +11:00
|
|
|
'app.message',
|
|
|
|
{
|
2014-09-03 16:25:35 +10:00
|
|
|
id : ipc.config.id,
|
2014-03-01 23:13:06 +11:00
|
|
|
message : 'hello'
|
|
|
|
}
|
2016-01-10 23:18:14 +11:00
|
|
|
);
|
2014-02-22 20:13:31 +11:00
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
|
|
|
'disconnect',
|
|
|
|
function(){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('disconnected from world');
|
2014-02-22 20:13:31 +11:00
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
2014-03-01 23:13:06 +11:00
|
|
|
'app.message',
|
2014-02-22 20:13:31 +11:00
|
|
|
function(data){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message from world : ', data);
|
2014-02-22 20:13:31 +11:00
|
|
|
}
|
|
|
|
);
|
2015-08-23 16:16:20 +10:00
|
|
|
|
|
|
|
console.log(ipc.of.world.destroy);
|
2014-02-22 20:13:31 +11:00
|
|
|
}
|
2015-08-23 15:46:55 +10:00
|
|
|
);
|