XMPP PubSub 通知是同时广播还是像队列一样广播?
我想知道 xmpp 发布-订阅功能是同时向所有订阅者发送通知(广播)还是在队列中发送通知,即一一发送。
我想知道我正在使用的 pub-sub 和 jaxl 类之间的区别,因为 jaxl 在队列中发送推送消息,每次只有一个用户。
I want to know whether xmpp publish-subscribe functionality send notifications to all subscribers simultaneously(broadcasts) or sends notifications in a queue i.e. one by one.
I want to know the difference between pub-sub and jaxl class which i am using because the jaxl sends push messages in queue that is one user at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于实施。单纯的 XEP-0060 PubSub 实现将发送单独的
事件
通知向所有订阅者发送消息
。但是,还有其他扩展,例如允许多播寻址的 XEP-0033 扩展节寻址
消息
。Depends on the implementation. Bare XEP-0060 PubSub implementation would send separate
event
notificationmessage
s to all subscribers.However, there are other extensions such as XEP-0033 Extended Stanza Addressing that allows multicast addressing of
message
s.