FreeMediator 1.4.0
dotnet add package FreeMediator --version 1.4.0
NuGet\Install-Package FreeMediator -Version 1.4.0
<PackageReference Include="FreeMediator" Version="1.4.0" />
<PackageVersion Include="FreeMediator" Version="1.4.0" />
<PackageReference Include="FreeMediator" />
paket add FreeMediator --version 1.4.0
#r "nuget: FreeMediator, 1.4.0"
#:package FreeMediator@1.4.0
#addin nuget:?package=FreeMediator&version=1.4.0
#tool nuget:?package=FreeMediator&version=1.4.0
FreeMediator
FreeMediator is a free and open-source alternative to the popular MediatR package by Jimmy Bogard.
- It strives to be a drop-in replacement for MediatR, with the same API and functionality, and is created purely on the background of MediatR going commercial.
- It is not a fork of MediatR, but rather a new implementation that aims to be as compatible as possible with the original. Let me know in the Issues section if you find any incompatibilities.
As such the first version only deals with the basic stuff:
- Sending requests and receiving responses
- Pipeline behavior support for requests (both open and closed behaviors)
- Publishing notifications
- Generic request handlers of same arity as
IRequestHandler<>
,IRequestHandler<,>
,IRequestHandler<,FIXED_TYPE>
orIRequestHandler<FIXED_TYPE,>
(the last two being partial arity match, check changelog v.1.2.0 for details) - Generic notification handlers of same arity as
INotificationHandler<>
Feel free to send a PR if you want to add any missing features, (make sure to read CONTRIBUTING.md first).
OR just open an Issue for missing features, and I'll have a look.
Features outside of the original MediatR
- Pipeline behavior support for notifications (both open and closed behaviors)
Current limitations
- No support for streaming
- No support for implementing multiple handlers in a single class if they have the same return type
Usage
FreeMediator is intended to be used with .Net Dependency Injection, so start off by adding it to your DI:
services.AddMediator(config =>
{
config.RegisterServicesFromAssemblyContaining<SomeRequest>(); // There are other ways to register services as well
});
This will scan the assembly containing SomeRequest
for all classes implementing IRequestHandler<TRequest, TResponse>
and INotificationHandler<TNotification>
and register them with the DI container.
It also registers the IMediator
interface itself (as well as a ISender
and IPublisher
interface, which are both
subsets of IMediator
).
From here on simply inject IMediator
(or ISender
/IPublisher
) into your classes and use it to send requests or
publish notifications:
public class SomeService
{
private readonly IMediator _mediator;
public SomeService(IMediator mediator
{
_mediator = mediator;
}
public async Task<SomeResponse> DoSomethingAsync(CancellationToken cancellationToken)
{
var response = await _sender.Send(new SomeRequest(), cancellationToken);
return response;
}
}
Changelog
See the CHANGELOG for a list of changes and new features.
Documentation
Auto generated documentation via DocFx is available here: https://steffenskov.github.io/FreeMediator/
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.