Message Priority
In case of Ecotone we don't prioritize whole Message, but specific Message Handler. This helps in scenarios when we have multiple Event Handlers, and we would like to configure each of them differently. For example may we have a case, where we want to prioritized one notification over another.
In Ecotone the higher the priority, the quicker given Event Handler will be called.
Synchronous Prioritization
In case we publish an Event, we may want have multiple subscribing Event Handlers. In some situations we may want given action to happen before the other. This may happen for example for example, when one Event Handler updates an data, which the other is using. Therefore we may need to ensure that the Handler modifying data will be called before the one that make use of it.
Default Synchronous Prioritization
There may be cases when we will use Synchronous Projections and then we would like to use this data in Event Handler. In that case, if standard Event Handler would be called first, we would lack the data. Therefore by default when Standard Event Handler has same priority as Projection Event Handler, Projection will be called first.
This also works for Aggregates to be prioritized before Standard Event Handlers. Therefore the ordering when same priority level is used, is as follows:
Projection Event Handlers
Aggregate/Sagas Event Handlers
Standard Event Handlers
Asynchronous Prioritization
Ecotone does allow to prioritize an handling of given Message before another one. This way we can handle quicker Messages that have been published to Asynchronous Message Channel later. For example we may send a lot of different notifications, however when Customer asks for One-Time Password we want to deliver it immediately. Therefore for this scenario we would setup higher priority for Authentication Token notification handling, than for other Notifications.
Asynchronous Message Channel need to support this option to be used
Static Priority
You may prioritize handling given asynchronous message by adding #[Priority]
attribute.
Dynamic Priority
We may send an Message and tell Ecotone to prioritize it using priority Message Header:
Last updated