Published events without handler

What happens to published events that have no handlers?

The events are published to a rabbitmq exchange. Handlers create queues that bind to that exchange (that’s where the messages end up). So if you send out events that don’t have any handlers they will just be discarded as soon as they reach the rabbitmq server.

1 Like