Symfony Messenger Transport
Symfony Messenger CQRS DDD
Symfony Messenger Transport Integration
Ecotone comes with Symfony Messenger Transport integration.
We may use Transports as our Message Channels.
This way we can work with familiar environment and reuse already set up Symfony Serializer
.
Asynchronous Message Handler
Suppose we have "async" transport:
Then we can register it using Service Context in Ecotone:
After that we can start using it as any other asynchronous channel.
Trigger Command/Event/Query via Ecotone Bus
In order to trigger Command
Event
or Query
Handler, we will be sending the Message
via given Ecotone's Bus, sending Messages via Symfony Bus will have no effect due to lack of information what kind of message it's.
Ecotone provide Command/Event/Query buses, Symfony contains general Message Bus.
It's important to distinguish between Message types as Queries
are handled synchronously, Commands
are point to point and target single Handler, Events
on other hand are publish-subscribe which means multiple Handlers can subscribe to it.
In order to trigger given Bus, inject CommandBus, EventBus or QueryBus (they are automatically available after installing Ecotone) and make use of them to send a Message.
Running Message Consumer (Worker)
We will be running Message Consumer using "ecotone:run" command:
Sending messages via routing
When sending command and events via routing, it's possible to use non-class types. In case of Symfony however, Messenger Transports require to Classes. To solve that Ecotone wraps simple types in a class and unwrap it on deserialization. Thanks to that we can Symfony Transport like any other Ecotone's Message Channel.
Command Handler with command having
array payload
Command Handler inside Aggregate with command having
no payload
at all
Asynchronous Event Handlers
In case of sending events, we will be using Event Bus.
EventBus is available out of the box in Dependency Container. Therefore all we need to do, is to inject it and publish an Event
Subscribe to Event
Last updated