1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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.rawBuffer=true;
- ipc.config.encoding='ascii';
- ipc.serve(
- function(){
- ipc.server.on(
- 'connect',
- function(socket){
- ipc.server.emit(
- socket,
- 'hello'
- );
- }
- );
- ipc.server.on(
- 'data',
- function(data,socket){
- ipc.log('got a message', data,data.toString());
- ipc.server.emit(
- socket,
- 'goodbye'
- );
- }
- );
- }
- );
- ipc.server.start();
|