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

38 lines
985 B
JavaScript
Raw Normal View History

2014-02-22 20:13:31 +11:00
var 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;
2014-02-27 09:04:09 +11:00
ipc.serveNet(
'udp4',
2014-02-22 20:13:31 +11:00
function(){
2014-02-27 09:04:09 +11:00
console.log(123);
2014-02-22 20:13:31 +11:00
ipc.server.on(
'message',
function(data,socket){
2014-02-27 09:04:09 +11:00
ipc.log('got a message from '.debug, data.from.variable ,' : '.debug, data.message.variable);
ipc.server.emit(
socket,
2014-02-22 20:13:31 +11:00
'message',
2014-02-27 09:04:09 +11:00
{
from : ipc.config.id,
message : data.message+' world!'
}
2014-02-22 20:13:31 +11:00
);
}
);
2014-02-27 09:04:09 +11:00
console.log(ipc.server);
2014-02-22 20:13:31 +11:00
}
);
2014-02-26 12:15:43 +11:00
ipc.server.define.listen.message='This event type listens for message strings as value of data key.';
2014-02-22 20:13:31 +11:00
2014-02-26 12:15:43 +11:00
ipc.server.start();