AsyncAPI Conf on Tour 2023

Madrid Edition

October, 2023 | Madrid, Spain

5 days until the end for Call for Speakers.

Consumer

Found an error? Have a suggestion?Edit this page on GitHub

What is a consumer?

In an Event Driven Architecture (EDA), a consumer is an application that listens for a particular event from a broker and reacts to it.

Why do we need consumers?

Unlike traditional REST APIs, in EDA, event consumers are not expected to respond immediately on the same connection. In this architecture, a consumer is unaware of the producer or other consumers; all they know is that when a broker sends them an event, it is because they subscribed to it.

When you want events processed asynchronously in your application, the consumer plays an important role in completing that event data flow in the event channel.

The above diagram depicts a sample flow of events from producer to broker to consumer. In this instance, the producer publishes two events (A and B) and sends them to the broker. Then each consumer subscribes to receive those events.

Remember
Subscribers can also be producers.
Was this helpful?
Help us improve the docs by adding your contribution.
OR
Github:AsyncAPICreate Issue on GitHub