55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
const 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.config.tls={
|
|
public: __dirname+'/../../../local-node-ipc-certs/server.pub',
|
|
private: __dirname+'/../../../local-node-ipc-certs/private/server.key'
|
|
};
|
|
|
|
var messages={
|
|
goodbye:false,
|
|
hello:false
|
|
};
|
|
|
|
ipc.serveNet(
|
|
function(){
|
|
ipc.server.on(
|
|
'app.message',
|
|
function(data,socket){
|
|
ipc.log('got a message from', (data.id), (data.message));
|
|
messages[data.id]=true;
|
|
ipc.server.emit(
|
|
socket,
|
|
'app.message',
|
|
{
|
|
id : ipc.config.id,
|
|
message : data.message+' world!'
|
|
}
|
|
);
|
|
|
|
if(messages.hello && messages.goodbye){
|
|
ipc.log('got all required events, telling clients to kill connection');
|
|
ipc.server.broadcast(
|
|
'kill.connection',
|
|
{
|
|
id:ipc.config.id
|
|
}
|
|
);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
);
|
|
|
|
|
|
|
|
|
|
ipc.server.start();
|