49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
import ipc from '../../../node-ipc.js';
|
|
|
|
/***************************************\
|
|
*
|
|
* You should start both hello and world
|
|
* then you will see them communicating.
|
|
*
|
|
* *************************************/
|
|
|
|
ipc.config.id = 'hello';
|
|
ipc.config.retry = 1000;
|
|
ipc.config.sync= true;
|
|
|
|
ipc.connectTo(
|
|
'world',
|
|
function(){
|
|
ipc.of.world.on(
|
|
'connect',
|
|
function(){
|
|
ipc.log('## connected to world ##', ipc.config.delay);
|
|
|
|
//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
|
|
}
|
|
);
|
|
}
|
|
}
|
|
);
|
|
ipc.of.world.on(
|
|
'disconnect',
|
|
function(){
|
|
ipc.log('disconnected from world');
|
|
}
|
|
);
|
|
ipc.of.world.on(
|
|
'app.message',
|
|
function(data){
|
|
ipc.log('got a message from world : ', data);
|
|
}
|
|
);
|
|
|
|
console.log(ipc.of.world.destroy);
|
|
}
|
|
);
|