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.

有帮助吗?

解决方案

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?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top