1

我不知道是否有可能实现这一点,但我想向特定数量的客户发送消息。

例如,假设我有 100 个客户端连接到我的服务器。并且我想以这样一种方式发送消息,即 100 个客户端中只有 10 个(应该能够在消息中指定)应该接收到消息并且不接收,甚至丢弃它。

就像网络数据包的 TTL 值一样。

谢谢

4

1 回答 1

0

Use rooms for that. When a client connect join him into a room. Then you can emit to that room.

See this link for details: https://github.com/LearnBoost/socket.io/wiki/Rooms

于 2013-01-04T06:57:17.077 回答