Hello, I am currently in a situation where I would like an Action to be handled by multiple handlers to update different states. However, I have discovered that MediatR prevents registering multiple handlers for the same IRequest.
For this to work, it would need to be an INotification.
Is there a specific reason why Actions are IRequest instead of INotification?
Hello, I am currently in a situation where I would like an Action to be handled by multiple handlers to update different states. However, I have discovered that MediatR prevents registering multiple handlers for the same IRequest.
For this to work, it would need to be an INotification. Is there a specific reason why Actions are IRequest instead of INotification?