tags:

views:

269

answers:

1

Hi,

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.

Please guide me

Thanks

+2  A: 

Depends on the implementation. Bare XEP-0060 PubSub implementation would send separate event notification messages to all subscribers.

However, there are other extensions such as XEP-0033 Extended Stanza Addressing that allows multicast addressing of messages.

laalto
Hi,Thanks for replying.Please confirm whether i am getting this correct the xep-0060 XEP-0060 PubSub would send notification messages in queue i.e. one by one and XEP-0253 PubSub Chaining will send notifications simulatneously.
Pankaj Khurana
I misread the pubsub chaining spec when skimming through it. Updated my answer. I'm only using xmpp thru 3rd party APIs, not on protocol level :P
laalto