admin管理员组文章数量:1352179
What's the best way to send a message via socket io to a group of users, for example only those in a specific chat room instead of all users?
I am aware of Sending data only to chosen users using Socket.io-node but socketio version .7 was released recently and seems like there might be a more elegant way with the new api using either get/set or namespacing?
What's the best way to send a message via socket io to a group of users, for example only those in a specific chat room instead of all users?
I am aware of Sending data only to chosen users using Socket.io-node but socketio version .7 was released recently and seems like there might be a more elegant way with the new api using either get/set or namespacing?
Share Improve this question edited May 23, 2017 at 12:34 CommunityBot 11 silver badge asked Jul 29, 2011 at 22:54 jhchenjhchen 14.8k14 gold badges65 silver badges91 bronze badges1 Answer
Reset to default 10I think you should look up room concept:
Rooms
Sometimes you want to put certain sockets in the same room, so that it's easy to broadcast to all of them together.
Think of this as built-in channels for sockets. Sockets join and leave rooms in each socket.
Server side:
var io = require('socket.io').listen(80); io.sockets.on('connection', function (socket) { socket.join('justin bieber fans'); socket.broadcast.to('justin bieber fans').emit('new fan'); io.sockets.in('rammstein fans').emit('new non-fan'); });
本文标签: javascriptSending message to specific group of clients in socketioStack Overflow
版权声明:本文标题:javascript - Sending message to specific group of clients in socketio - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909561a2560141.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论