//g.js
module.exports = {
//建立連接后所要做的事情
onConnect: function (client, done) {
// 登錄
client.write({"type": "login", "client_name": Date.parse(new Date()), "room_id": "1"});
done();
},
//向服務(wù)器民送消息時(shí)運(yùn)行的代碼
sendMessage: function (client, done) {
// 說(shuō)話
client.write({"type": "say", "to_client_id": "all", "to_client_name": "所有人", "content": "123456"});
done();
}
};
//websocket-bench -a 1000 -c 1 -w 8 -m 100 -t primus -p websockets ws://127.0.0.1:7272 -g g.js