node-ipc/example/unixWindowsSocket/rawBuffer/hello-client.js

36 lines
800 B
JavaScript
Raw Normal View History

const ipc=require('../../../node-ipc');
2015-08-22 22:46:55 -07:00
/***************************************\
*
* You should start both hello and world
* then you will see them communicating.
*
* *************************************/
2016-01-10 04:18:14 -08:00
ipc.config.id = 'hello';
2015-08-22 22:46:55 -07:00
ipc.config.retry= 1500;
ipc.config.rawBuffer=true;
ipc.config.encoding='ascii';
ipc.connectTo(
'world',
function(){
ipc.of.world.on(
'connect',
function(){
ipc.log('## connected to world ##', ipc.config.delay);
2015-08-22 22:46:55 -07:00
ipc.of.world.emit(
'hello'
2016-01-10 04:18:14 -08:00
);
2015-08-22 22:46:55 -07:00
}
);
ipc.of.world.on(
'data',
function(data){
ipc.log('got a message from world : ', data,data.toString());
2015-08-22 22:46:55 -07:00
}
);
}
);