Skip to content

Commit

Permalink
Merge pull request #4161 from shaedrich/pubsub
Browse files Browse the repository at this point in the history
Create topic "Publish-subscribe pattern"
  • Loading branch information
ahpook authored Jan 11, 2024
2 parents c62b93e + 44fbf0a commit d6892f2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions topics/pubsub/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
aliases: publish-subscribe-pattern, publish-subscribe
topic: pubsub
display_name: Publish-subscribe pattern
short_description: The publish-subscribe pattern is a messaging pattern where the consumer subscribes to the provider.
related: message-queue, message-oriented-middleware, message-passing, event-bus, event-handlers, event-listener, message-bus, event-sourcing, observer-pattern, event-driven-programming
released: 1987
wikipedia_url: https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern
---
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.

0 comments on commit d6892f2

Please sign in to comment.