2021-07-03 07:35:02 +10:00
|
|
|
import ipc from '../../../node-ipc.js';
|
2015-12-10 19:11:14 +11: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 = 'hello';
|
2015-12-10 19:11:14 +11:00
|
|
|
ipc.config.retry = 1000;
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.sync= true;
|
2015-12-10 19:11:14 +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);
|
2015-12-10 19:11:14 +11:00
|
|
|
|
|
|
|
//queue up a bunch of requests to be sent synchronously
|
|
|
|
for(var i=0; i<10; i++){
|
|
|
|
ipc.of.world.emit(
|
|
|
|
'app.message',
|
|
|
|
{
|
|
|
|
id : ipc.config.id,
|
|
|
|
message : 'hello'+i
|
|
|
|
}
|
2016-01-10 23:18:14 +11:00
|
|
|
);
|
2015-12-10 19:11:14 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
|
|
|
'disconnect',
|
|
|
|
function(){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('disconnected from world');
|
2015-12-10 19:11:14 +11:00
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
|
|
|
'app.message',
|
|
|
|
function(data){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message from world : ', data);
|
2015-12-10 19:11:14 +11:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
console.log(ipc.of.world.destroy);
|
|
|
|
}
|
|
|
|
);
|