Skip to main content

What are messages?

View as Markdown

EventCatalog supports different types of messages (commands, events and queries).

  • Commands - represent intent, commands can be rejected in distributed systems.
  • Events - represents an immutable fact.
  • Queries - represent requests for information.

Linking messages to services, domains and channels

  • Messages can be sent (producer) or received (consumer) by services, domains or be totally independent.
  • You can also route messages through one or more channels (e.g queue, broker, bus).

Where do messages live?

Messages can live anywhere in your catalog, at the service level or domain level.

Example of a message living at the service level

Here we have the OrderPlaced message living at the service level.

Example of a message living at the domain level

Here we have the OrderPlaced message living at the domain level.

You can reference messages from anywhere in your catalog

It does not matter where you store your messages, you can reference them from anywhere in your catalog. Your domains and services will reference them by their id and optionally the version. EventCatalog will resolve the message.