Sponsor: Interested in learning more about Distributed Systems Design? Enter for a chance to win a 5 day Advanced Distributed Systems Design course led by Udi Dahan founder of Particular Software, and creator of NServiceBus.
With the MediatR v3, there is the ability to create your own request pipelines. To help out of the box, there are some predefined behaviors to help out with commen tasks such as pre and post request. These are RequestPreProcessorBehavior<,> and RequestPostProcessorBehavior<,>
I’ve blogged about the new behaviors before but you can do it more generically.
Cross Cutting Behavior
I was looking at the pipeline to handle cross-cutting concerns like logging and metrics, which I would want on each command/query.
— Scott Banwart (@sbanwart) September 6, 2017
Logging
Pretty typical scenario of wanting to log incoming requests. One common use case would be to store the incoming requests as a message store.Registration
The next piece of the puzzle is making sure you register theRequestPreProcessorBehavior<,>with the DI container you are using with MediatR. In the case of StructureMap that looks like: