I was happy and surprised to see that MediatR v3.0 was released yesterday. One of the new features, which I was really looking forward to are pipeline behaviors.
A pipeline behavior is an implementation of
IPipelineBehavior<TRequest, TResponse>
. It represents a similar pattern to filters in ASP.NET MVC/Web API or pipeline behaviors in NServiceBus.
Changes
There are a couple major breaking changes to v3. All of them I’m fairly happy about actually.
Messages
There is no distinction between sync, async (cancellable) requests or notifications.
You simply implement either IRequest
or INotification
.
You must still create the appropriate handler via either IRequestHandler
, IAsyncRequestHandler
, ICancellableAsyncRequestHandler
.
Async
To send a request or publish a notification simply use Task Send(IRequest)
or Task Publish(INotification)
No longer does it have the “Async” convention of appending to the method name. I know this is often debated about this convention. I don’t mind it at all since there are no sync methods.
Behaviors
The new addition is the interface IPipelineBehavior<TRequest, TResponse>
This allows you to create implementation(s) that will invoked in the order they are registered with your container (returned from the MultiInstanceFactory
delegate).
The simplest implementation, that does nothing but call the next possible behavior.
You can see how you can use this to create Pre and Post behaviors to create a pipeline.
Pre & Post Processors
Thankfully, these have already been created and built-in to v3.
RequestPreProcessorBehavior<TRequest, TResponse>
and RequestPostProcessorBehavior
<TRequest, TResponse>
to the rescue.
These can be used to implementing the appropriate interface of IRequestPreProcess<TRequest,TResponse>
and IRequestPostProcessor<TRequest,TResponse>
Note: Be sure to register your IRequestPreProcess<TRequest,TResponse>
and IRequestPostProcessor<TRequest,TResponse>
as well as RequestPreProcessorBehavior<TRequest, TResponse>
and RequestPostProcessorBehavior
<TRequest, TResponse>
with your container.
Test Drive
I figured I would use my ASP.NET Core MVC Music Store application as a test bed.
You can refer to my Fat Controller CQRS Diet: Command Pipeline post to see how created a pipeline in MediatR v2. It involved creating wrapper/decorator with StructureMap.
This is incredibly straight forward and does all the heavy lifting that the pipeline decorator that I created previous.
For our MusicStore app, we can change our AddToCart for logging to be done like this.
The above code completely removed my need for my custom Pipeline decorator using StructureMap. Win.
ASP.NET Extension
If you are using ASP.NET Core, check out the MediatR.Extensions.Microsoft.DependencyInjection v2.x package. It has also been updated to support MediatR v3.
It adds several extension methods, one of which is IServiceCollection.AddMediatR(Assembly) to register all the Handlers and Pre/PostProcessor in a given assembly.
Comments
Are you using MediatR? Do you plan on upgrading to v3? I love hearing your comments, questions and recommendations! Please post a comments or on Twitter.