2016-03-23 18:07:37 +11:00
|
|
|
const ipc=require('../../../node-ipc');
|
2014-03-01 23:13:06 +11:00
|
|
|
|
|
|
|
/***************************************\
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-03-01 23:13:06 +11:00
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
2016-03-23 18:07:37 +11:00
|
|
|
*
|
2014-03-01 23:13:06 +11:00
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'world';
|
2014-03-01 23:13:06 +11:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
|
|
|
|
var messages={
|
|
|
|
goodbye:false,
|
|
|
|
hello:false
|
2016-01-10 23:18:14 +11:00
|
|
|
};
|
2014-03-01 23:13:06 +11:00
|
|
|
|
|
|
|
ipc.serve(
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
|
|
|
'app.message',
|
|
|
|
function(data,socket){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message from', (data.id), (data.message));
|
2014-03-01 23:13:06 +11:00
|
|
|
messages[data.id]=true;
|
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
|
|
|
'app.message',
|
|
|
|
{
|
|
|
|
id : ipc.config.id,
|
|
|
|
message : data.message+' world!'
|
|
|
|
}
|
|
|
|
);
|
2016-03-23 18:07:37 +11:00
|
|
|
|
2014-03-01 23:13:06 +11:00
|
|
|
if(messages.hello && messages.goodbye){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got all required events, telling clients to kill connection');
|
2014-03-01 23:13:06 +11:00
|
|
|
ipc.server.broadcast(
|
|
|
|
'kill.connection',
|
|
|
|
{
|
|
|
|
id:ipc.config.id
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-10 21:29:15 +11:00
|
|
|
|
|
|
|
|
2014-03-01 23:13:06 +11:00
|
|
|
|
|
|
|
ipc.server.start();
|