Socket.io房间broadcast.to和sockets.in的区别
Socket.io 的自述文件包含以下示例:
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');
});
socket.broadcast.to()
和 io.sockets.in()
之间有什么区别?
Socket.io's readme contains the following example:
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');
});
What's the difference between socket.broadcast.to()
and io.sockets.in()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
socket.broadcast.to
向给定房间中的所有套接字广播,除了在io.sockets.in
时调用它的套接字向给定房间中的所有套接字广播。socket.broadcast.to
broadcasts to all sockets in the given room, except to the socket on which it was called whileio.sockets.in
broadcasts to all sockets in the given room.2019 年更新:socket.io 是一个特殊模块,它使用 websockets,然后回退到 http 请求轮询。仅适用于 websockets:对于客户端,请使用本机 websockets;对于 Node.js,请使用 ws 或此库。
简单示例
socketio 中的语法很混乱。此外,每个套接字都会自动连接到自己的房间,其 ID 为
socket.id
(这就是在 socketio 中私人聊天的工作方式,他们使用房间)。发送给发件人,而不是其他人
发送给房间“我的房间”中的所有人,包括发件人(如果发件人在房间内) /em>
发送给房间“我的房间”中除发件人之外的所有人(如果发件人在房间内)
发送给每个中的每个人房间,包括发送者
仅发送到特定套接字(私人聊天)
Update 2019: socket.io is a special module which uses websockets and then fallsback to http request polling. For just websockets: for the client use native websockets and for node.js use ws or this library.
Simple example
The syntax is confusing in socketio. Also, every socket is automatically connected to their own room with the id
socket.id
(this is how private chat works in socketio, they use rooms).Send to the sender and noone else
Send to everyone including the sender(if the sender is in the room) in the room "my room"
Send to everyone except the sender(if the sender is in the room) in the room "my room"
Send to everyone in every room, including the sender
Send to specific socket only (private chat)
Node.js 是我有一段时间真正感兴趣的东西,我在我的一个项目中使用它来制作一款多人游戏。
io.sockets.in().emit()
和socket.broadcast.to().emit()
是我们在 Socket.io 的 Rooms 中使用的两个主要的发射方法(https://github.com/LearnBoost/socket.io/wiki/Rooms) 房间允许简单连接的客户端的分区。这允许将事件发送到已连接客户端列表的子集,并提供管理它们的简单方法。它们允许我们管理已连接客户端列表的子集(我们称之为房间),并具有类似的功能,例如主 socket.io 函数
io.sockets.emit()
和socket。广播.emit()。
无论如何,我会尝试给出示例代码和注释来解释。看看是否有帮助;
Socket.io Rooms
i) io.sockets.in().emit();
ii) socket.broadcast.to().emit();
Socket.io
i) io.sockets.emit();
ii) socket.broadcast.emit();
干杯
Node.js was something I was really interested forawhile and I used it in one of my project to make a multiplayer game.
io.sockets.in().emit()
andsocket.broadcast.to().emit()
are the main two emit methods we use in Socket.io's Rooms (https://github.com/LearnBoost/socket.io/wiki/Rooms) Rooms allow simple partitioning of the connected clients. This allows events to be emitted with to subsets of the connected client list, and gives a simple method of managing them.They allow us to manage the subsets of the connected client list(which we call rooms) and have the similiar functionalities like the main socket.io functions
io.sockets.emit()
andsocket.broadcast.emit()
.Anyway I'll try to give the example codes with the comments to explain. See if it helps;
Socket.io Rooms
i) io.sockets.in().emit();
ii) socket.broadcast.to().emit();
Socket.io
i) io.sockets.emit();
ii) socket.broadcast.emit();
Cheers
在Socket.IO 1.0中,.to()和.in()是相同的。房间里的其他人也会收到该消息。客户端发送的消息不会收到。
查看源代码(v1.0.6):
https://github.com/Automattic/socket.io/blob/a40068b5f328fe50a2cd1e54c681be792d89a595/lib/socket.js#L173
In Socket.IO 1.0, .to() and .in() are the same. And others in the room will receive the message. The client sends it won't receive the message.
Check out source code (v1.0.6):
https://github.com/Automattic/socket.io/blob/a40068b5f328fe50a2cd1e54c681be792d89a595/lib/socket.js#L173