How Ecotone works under the hood
Last updated
Was this helpful?
Last updated
Was this helpful?
The heart of Ecotone
is :
This is a place, where all messaging concepts are registered. Messaging System Configuration is responsible for exposing an API for registering lower level messaging concepts, like or . This is the only place, where all configuration is gathered together in order to prepare . After setting up configuration, this config can then be cached and reused between requests. This is one of the powers of Ecotone, as once the configuration is set up, then all we do is to execute it.
When configuration is prepared, we can then build Configured Messaging System from it:
The result of the built is
This is actually an API that you work with on daily basics when using Ecotone.
We can get Command/Query/Event buses
(which are actually ) from here, execute consumer
or fetch message channel
.
So we know that the heart of Ecotone is Messaging Configuration
, what is this built from actually? Who registers Gateways, Message Handlers, Channels?
And the answer are Modules
.
Modules
are layer which transforms User land code to Ecotone's configuration.
In most of the cases they look for code that is annotated with given Attribute, to register . This way Ecotone joins messaging world with user land world and provides easy to work with API on the high level, using powerful messaging concepts under the hood.
So what happens when we execute gateway like Command Bus?
It goes through Message Channels
(Ecotone\Messaging\MessageChannel
), where at the end of each channel there is specific Message Handler
(Ecotone\Messaging\MessageHandler
) implementation.
You can imagine channels
as veins
, that pass messages
to your organs
(Message Handlers
).
Message Handlers can have input and output message channels, however they unaware of specific Channel implementation. This allow you to switch different implementations like RabbitMQ,Dbal,In Memory
and your Handlers will stay the same.
So each of the Handlers after receiving message performs an action and may provide reply message. If given Handler has output channel defined, it will go to the next channel. This happens till the moment there is no output channel defined and then flows stop.
There are multiple implementations of Message Handlers, including , Message Splitter, , you will find them in Ecotone\Messaging\Handler
namespace.
What about Command/Event/Query
Handlers?
This is just another level of abstraction built on top of messaging concepts.
In reality Command Handler
is just an Service Activator
.
The same about Command/Event/Query
buses, on the fundamental level they are combined with.