Question

I need to map one message to multiple saga instances. how can i do it?

i thought to an utility service that receives that message and sends copies of it to all saga instances. But this solution requires the knowledge from this service of all sagaIds.

Was it helpful?

Solution

This isn't currently supported on a single endpoint. If you want multiple sagas to handle the same message, that message needs to be processed by multiple endpoints.

Can you design your solution differently not to need multiple sagas to be invoked per message?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top