How to have a shared context per message handler in Rebus?
Summary The problem at hand is to achieve a shared context between multiple decorators applied to the same handler execution in Rebus. Rebus uses a single service scope for the entire message processing pipeline, making it challenging to share state or context between decorators. The goal is to use decorators to add cross-cutting concerns, such … Read more