saga ordered event handling

Hi,

Given that Saga and replayable event listeners are in different cluster, is it possible to specify an order for handle a specific event between a saga and event listener ?
i.e, i have SomeEvent, and both MySaga and MyEventListener handle it. I would like MyEventListener handles SomeEvent before MySaga .

Note : all sagas & replayable event listeners are in a asynchronous cluster.

Thanks,

Baptiste.

Hi,

basically, there is no way to ensure certain handlers process and event before certain other handlers. The only way this could be done is by putting them in the same cluster.
It’s best to think about a design where handlers aren’t dependent on each other.

Cheers,

Allard