Search⌘ K

Asynchronous Integration with Messages

Explore the message types like integration events, commands, queries, and replies for communication between components, facilitating state changes, requests, and responses.

What exactly is a message?

So far, we have only talked about events, so what exactly is a message? An event is a message, but a message is not always an event. A message is a container with a payload, which can also be an event and can have some additional information in the form of key-value pairs.

A message can be used to communicate an event, but it can also be used to communicate an instruction or information to another ...