Publish-Subscribe

One publisher, many independent subscribers.

Publish-Subscribe: rendered example
Rendered by Gnomon from the source below. No edits.

The source

20 lines of PlantUML, and pulls in Enterprise Integration Patterns. Copy it, or open the template inside Gnomon and render it as it is.

@startuml
!include https://raw.githubusercontent.com/plantuml-stdlib/EIP-PlantUML/main/dist/EIP-PlantUML.puml

title Publish-Subscribe Pattern

MessagingGateway(publisher, "Event Publisher")
PubSubChannel(topic, "Order Events")

DurableSubscriber(inventory, "Inventory Service")
DurableSubscriber(shipping, "Shipping Service")
DurableSubscriber(billing, "Billing Service")
NonDurableSubscriber(analytics, "Analytics Service")

Send(publisher, topic)
Send(topic, inventory)
Send(topic, shipping)
Send(topic, billing)
Send(topic, analytics)

@enduml

Render this offline

This template ships in Gnomon and renders on your machine, with no account and nothing sent to a server. The browser editor is free and needs no install.

Get GnomonOpen the browser editor

Others in Enterprise integration pattern diagrams