| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- const ipc=require('../../../node-ipc');
 
- /***************************************\
 
-  *
 
-  * You should start both hello and world
 
-  * then you will see them communicating.
 
-  *
 
-  * *************************************/
 
- ipc.config.id = 'goodbye';
 
- ipc.config.retry= 1500;
 
- ipc.config.maxRetries= 10;
 
- ipc.config.tls={
 
-     rejectUnauthorized:false
 
- };
 
- ipc.connectToNet(
 
-     'world',
 
-     function(){
 
-         ipc.of.world.on(
 
-             'connect',
 
-             function(){
 
-                 ipc.log('## connected to world ##', ipc.config.delay);
 
-                 ipc.of.world.emit(
 
-                     'app.message',
 
-                     {
 
-                         id      : ipc.config.id,
 
-                         message : 'goodbye'
 
-                     }
 
-                 );
 
-             }
 
-         );
 
-         ipc.of.world.on(
 
-             'disconnect',
 
-             function(){
 
-                 ipc.log('disconnected from world');
 
-             }
 
-         );
 
-         ipc.of.world.on(
 
-             'kill.connection',
 
-             function(data){
 
-                 ipc.log('world requested kill.connection');
 
-                 ipc.disconnect('world');
 
-             }
 
-         );
 
-     }
 
- );
 
 
  |