In basic queuing, each message goes to one consumer. Pub/Sub (publish/subscribe) delivers messages to all subscribers.
Publishers send to a topic. All subscribers to that topic receive the message. Use this when multiple services need the same event. User signs up? Notify email service, analytics service, and recommendation service.
Kafka topics, AWS SNS, and Google Pub/Sub all implement this pattern. One event triggers many actions.