Hi @uherbst . Thank you for response. So, the way I understand things are as follows
command → command handler → business process → event → event handler(s)
Commands are imperative like ‘Create Notification’. Events express things that have happened for example: ‘Notification Created’
Typically, for a command, you have a single command handler. For an event, you can have one or more event handlers.
So, from your response, I’m gathering I can issue commands from a system/service into Solace Event Broker for a command handler somewhere else to pick up and process? Is there a way to prevent multiple command handlers from consuming a given command?
Thank you.