Mediator is one of the 23 design patterns stated inside the GOFDesign Patterns book. All it does is encapsulates the communication between objects, hence no coupling. It falls into the object behavior patterns category.
Nevertheless, this pattern is widely used in many productions ready libraries; MediatR is such as one. Recently I've been dwelling in the world of messaging frameworks. In the land of so many awesome libraries, one caught my eyes. Ladies and gentlemen, I present to you MassTransit.
Anyways, I was glad to find out that MassTransit has a Mediator implementation that may/may not (depends on your use case) replace the need of MediatR.
MassTransit Mediator runs in-process and in-memory, no transport (RabbitMQ, Service Bus, etc.) is required i.e. pretty similar to MediatR. So, why using two separate libraries when you can use one? Am I right or am I right?
No more talking. Here goes an example.
Start with the default ASP.NET Core Web API project. I'm using .NET 6.
Configure the MassTransit Mediator services as follows,
MassTransit is consumer-based, unlike MediatR that uses RequestHandlers for handling Queries and Commands. You can write a consumer for GetWeatherForecast like this:
Both GetWeatherForecasts and WeatherForecasts are message contracts. In MassTransit, contracts are simply interfaces,
public interface GetWeatherForecasts
{
}
public interface WeatherForecasts
{
WeatherForecast[] Forecasts { get; }
}
GetWeatherForecasts is empty cause we ain't passing any input arguments to get the forecasts.
Getting back to the WeatherForecastController, a request client is needed to get a response from the GetWeatherForecastConsumer,
Pretty much done accept for the service registrations for GetWeatherForecastConsumer and IRequestClient<GetWeatherForecats>. Going back to the Program.cs, configure the AddMediator service as follows,
AddConsumers(Assembly.GetExecutingAssembly()) will register all the consumers available in the current assembly. AddRequestClient<GetWeatherForecasts>() will register a request client for GetWeatherForecasts.
Done! Run the application and everything should work properly.
Extras:
Wondering whether you can register request clients on demand? Sure, you can! Inject the IMediator interface in the constructor of WeatherForecastController and use it to create a request client like this:
Remove the AddRequestClient<GetWeatherForecasts>() from Program.cs as it is no longer needed.
Github Repository:
Important Links:
Comments
Subscribe to Fiyaz Hasan
Subscribe today and get access to a private newsletter and new content every week!
Comments