Top "Publish-subscribe" questions

Publish/subscribe is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers).

PointToPoint vs Publish/subscribe model in JMS?

I am new to JMS.I have started with hello world where i am publishing the message from java application …

java jms publish-subscribe mom
RabbitMQ: How to specify the queue to publish to?

RabbitMQ's Channel#basicConsume method gives us the following arguments: channel.basicConsume(queueName, autoAck, consumerTag, noLocal, exclusive, arguments, callback); Giving us …

java rabbitmq messaging publish-subscribe channel
Azure event hubs and multiple consumer groups

Need help on using Azure event hubs in the following scenario. I think consumer groups might be the right option …

azure publish-subscribe azure-eventhub
zmq vs redis for pub-sub pattern

redis supports pub-sub zmq also supports pub-sub via a message broker What would be the architectural pros\cons for choosing …

architecture redis zeromq publish-subscribe design-consideration
How can I send a image by using mosquitto?

I'm trying to send a jpg image using MQTT mosquitto broker(pub and sub) in Raspberry Pi2. This is my …

python raspberry-pi publish-subscribe mqtt mosquitto
lost messages on zeromq pub sub

I'm trying to implement the pub sub design pattern using zeromq framework. The idea is to launch a subscriber and …

c++ publish-subscribe zeromq
Redis publish-subscribe: Is Redis guaranteed to deliver the message even under massive stress?

Provided that both the client subscribed and the server publishing the message retain the connection, is Redis guaranteed to always …

redis publish-subscribe
jQuery plugin for Event Driven Architecture?

Are there any Event Driven Architecture jQuery plugins? Step 1: Subscribing The subscribers subscribe to the event handler in the middle, …

javascript jquery-plugins publish-subscribe event-driven-design event-bus
Is there any recommended lightweight pubsub service/library?

I'm building a small system that contains many parts and I want to use a message pub/sub service to …

c++ linux static-libraries message-queue publish-subscribe
ZeroMQ Topic Filtering with Pub/Sub (Java binding)

How can I get ZeroMQ to support topics and pattern matching? e.g. stocks.* stocks.appl From my understanding ZeroMQ..…

filtering publish-subscribe zeromq