123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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.sync = true;
- ipc.serveNet(
- function(){
- ipc.server.on(
- 'message',
- function(data,socket){
- ipc.log('got a message : ', data);
- //fake some synch procedural code
- setTimeout(
- function(){
- ipc.server.emit(
- socket,
- 'message',
- data+' world!'
- );
- },
- 3000
- );
- }
- );
- ipc.server.on(
- 'socket.disconnected',
- function(data,socket){
- console.log(arguments);
- }
- );
- }
- );
- ipc.server.start();
|