node-ipc/example/TCPSocket/basic/world-server.js

45 lines
929 B
JavaScript
Raw Normal View History

2021-07-03 07:35:02 +10:00
import ipc from '../../../node-ipc.js';
2014-02-22 20:13:31 +11:00
/***************************************\
2015-12-10 21:29:15 +11:00
*
2014-02-22 20:13:31 +11:00
* You should start both hello and world
* then you will see them communicating.
2015-12-10 21:29:15 +11:00
*
2014-02-22 20:13:31 +11:00
* *************************************/
2016-01-10 23:18:14 +11:00
ipc.config.id = 'world';
2014-02-22 20:13:31 +11:00
ipc.config.retry= 1500;
ipc.config.maxConnections=1;
2014-02-22 20:13:31 +11:00
2014-02-27 09:04:09 +11:00
ipc.serveNet(
2014-02-22 20:13:31 +11:00
function(){
ipc.server.on(
'message',
function(data,socket){
ipc.log('got a message : ', data);
ipc.server.emit(
socket,
2014-02-22 20:13:31 +11:00
'message',
data+' world!'
);
}
);
2015-12-10 21:29:15 +11:00
ipc.server.on(
'socket.disconnected',
function(data,socket){
console.log('DISCONNECTED\n\n',arguments);
}
);
2014-02-22 20:13:31 +11:00
}
);
ipc.server.on(
'error',
function(err){
ipc.log('Got an ERROR!',err);
}
2016-01-10 23:18:14 +11:00
);
2015-12-10 21:29:15 +11:00
ipc.server.start();