A payments notifier must publish events so billing and auditing can consume them independently without the notifier knowing every subscriber. Which pattern best fits?
Select an answer to reveal the explanation.
Short Explanation
Pub/sub is the city PA system—payments announce once, and billing plus auditing plug in their own radios. Point-to-point SSH or one hard-coded URL ties the announcer to every listener by name.
Full Explanation
Loose coupling for fan-out uses pub/sub services such as Amazon SNS or EventBridge, often with SQS queues per consumer, so publishers do not maintain a list of all subscribers. Synchronous point-to-point calls and in-memory handoffs reintroduce tight coupling and operational risk.