39 lines
916 B
JavaScript
39 lines
916 B
JavaScript
const ipc=require('../../../node-ipc');
|
|
|
|
/***************************************\
|
|
*
|
|
* You should start both hello and world
|
|
* then you will see them communicating.
|
|
*
|
|
* *************************************/
|
|
|
|
ipc.config.id = 'hello';
|
|
ipc.config.retry= 1500;
|
|
|
|
ipc.connectToNet(
|
|
'world',
|
|
function(){
|
|
ipc.of.world.on(
|
|
'connect',
|
|
function(){
|
|
ipc.log('## connected to world ##', ipc.config.delay);
|
|
ipc.of.world.emit(
|
|
'message',
|
|
'hello'
|
|
);
|
|
}
|
|
);
|
|
ipc.of.world.on(
|
|
'disconnect',
|
|
function(){
|
|
ipc.log('disconnected from world');
|
|
}
|
|
);
|
|
ipc.of.world.on(
|
|
'message',
|
|
function(data){
|
|
ipc.log('got a message from world : ', data);
|
|
}
|
|
);
|
|
}
|
|
);
|