2014-02-22 20:13:31 +11:00
|
|
|
var ipc=require('../../../node-ipc');
|
|
|
|
|
|
|
|
/***************************************\
|
|
|
|
*
|
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
|
|
|
*
|
|
|
|
* *************************************/
|
|
|
|
|
|
|
|
ipc.config.id = 'world';
|
|
|
|
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-03-04 07:02:56 +11:00
|
|
|
//ipc.log('got a message from'.debug, (data.id).variable, (data.message).data);
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2014-03-01 23:13:06 +11:00
|
|
|
ipc.server.define.listen['app.message']='This event type listens for message strings as value of data key.';
|
2014-02-22 20:13:31 +11:00
|
|
|
|
2014-02-28 07:23:53 +11:00
|
|
|
ipc.server.start();
|