Skip to content
#

publish-subscribe

The publish-subscribe pattern (short: pubsub) is an event handling and messaging pattern where the consumer subscribes to the provider, which in return can then publish a message that can be picked up and processed by each subscribed consumer.

Here are 48 public repositories matching this topic...

This project is about the specification, design and implementation of a simple publish subscribe system. Publish–Subscribe is a messaging pattern where senders of messages, called publishers, do not program the messages to be sent directly to specific receivers, called subscribers, but instead categorize published messages into classes without k…

  • Updated Aug 7, 2019
  • Java