A mediator project for .NET
You can get Mediator.Net by grabbing the latest NuGet packages.
Install the nuget package Mediator.Net
Install-Package Mediator.Net
// Setup a mediator builder
var mediaBuilder = new MediatorBuilder();
var mediator = mediaBuilder.RegisterHandlers(typeof(this).Assembly).Build();
await _mediator.SendAsync(new TestBaseCommand(Guid.NewGuid()));
var pong = await _mediator.SendAsync<Ping, Pong>(new Ping());
var result = await _mediator.RequestAsync<GetGuidRequest, GetGuidResponse>(new GetGuidRequest(_guid));
await _mediator.Publish(new OrderPlacedEvent);
Inside a command handler.Handle method, a IReceiveContext expose a method of Publish
public async Task Handle(IReceiveContext<DerivedTestBaseCommand> context, CancellationToken cancellationToken)
{
// Do you work
await context.Publish(new OrderPlacedEvent());
}
Sometimes you might want to get multiple responses by one request or command, you can do that by using the CreateStream
method
// Define a StreamHandler by implementing the IStreamRequestHandler or IStreamCommandHandler interfaces for IRequest and ICommand
public class GetMultipleGuidStreamRequestHandler : IStreamRequestHandler<GetGuidRequest, GetGuidResponse>
{
public async IAsyncEnumerable<GetGuidResponse> Handle(IReceiveContext<GetGuidRequest> context, [EnumeratorCancellation] CancellationToken cancellationToken)
{
for (var i = 0; i < 5; i++)
{
await Task.Delay(100, cancellationToken);
yield return await Task.FromResult(new GetGuidResponse(Guid.NewGuid() ){Index = i});
}
}
}
// You can now get multiple responses back by using this
IAsyncEnumerable<GetGuiResponse> result = mediator.CreateStream<GetGuidRequest, GetGuidResponse>(new GetGuidRequest(_guid));
await foreach (var r in result)
{
Console.WriteLine(r.Id.ToString());
}
How about EventHandler? What would be the use cases of a stream of events? So it is currently not supported
How about middleware? You can use middleware as normal, keep in mind that middleware will only get invoked once for each IRequest or ICommand thought that multiple responses might return
Once a message is sent, it will reach its handlers, you can only have one handler for ICommand and IRequest and can have multi handlers for IEvent. ReceiveContext will be delivered to the handler.
class TestBaseCommandHandler : ICommandHandler<TestBaseCommand>
{
public Task Handle(ReceiveContext<TestBaseCommand> context)
{
Console.WriteLine(context.Message.Id);
return Task.FromResult(0);
}
}
// Or in async
class AsyncTestBaseCommandHandler : ICommandHandler<TestBaseCommand>
{
public async Task Handle(ReceiveContext<TestBaseCommand> context)
{
Console.WriteLine(context.Message.Id);
await Task.FromResult(0);
}
}
var mediator = builder.RegisterHandlers(() =>
{
var binding = new List<MessageBinding>
{
new MessageBinding(typeof(TestBaseCommand), typeof(TestBaseCommandHandler)),
new MessageBinding(typeof(DerivedTestBaseCommand), typeof(DerivedTestBaseCommandHandler))
};
return binding;
}).Build();
var mediaBuilder = new MediatorBuilder();
var mediator = mediaBuilder.RegisterHandlers(typeof(this).Assembly).Build();
There are 5 different type of pipelines you can use
This pipeline will be triggered whenever a message is sent, published or requested before it reaches the next pipeline and handler
This pipeline will be triggered just after the GlobalReceivePipeline
and before it reaches its command handler, this pipeline will only be used for ICommand
This pipeline will be triggered just after the GlobalReceivePipeline
and before it reaches its event handler/handlers, this pipeline will only be used for IEvent
This pipeline will be triggered just after the GlobalReceivePipeline
and before it reaches its request handler, this pipeline will only be used for IRequest
This pipeline will be triggered when an IEvent
is published inside your handler, this pipeline will only be used for IEvent
and is usually being used as outgoing interceptor
The most powerful thing for the pipelines above is you can add as many middlewares as you want. Follow the following steps to setup a middleware
- Add a static class for your middleware
- Add a public static extension method in that class you just added, usually follow the UseXxxx naming convention
- Add another class for your middleware's specification, note that this is the implementation of your middleware
You might need some dependencies in your middleware, there are two ways to do it
- Pass them in explicitly
- Let the IoC container to resolve it for you (if you are using IoC)
Here is a sample middleware
public static class SerilogMiddleware
{
public static void UseSerilog<TContext>(this IPipeConfigurator<TContext> configurator, LogEventLevel logAsLevel, ILogger logger = null)
where TContext : IContext<IMessage>
{
if (logger == null && configurator.DependencyScope == null)
{
throw new DependencyScopeNotConfiguredException($"{nameof(ILogger)} is not provided and IDependencyScope is not configured, Please ensure {nameof(ILogger)} is registered properly if you are using IoC container, otherwise please pass {nameof(ILogger)} as parameter");
}
logger = logger ?? configurator.DependencyScope.Resolve<ILogger>();
configurator.AddPipeSpecification(new SerilogMiddlewareSpecification<TContext>(logger, logAsLevel));
}
}
class SerilogMiddlewareSpecification<TContext> : IPipeSpecification<TContext> where TContext : IContext<IMessage>
{
private readonly ILogger _logger;
private readonly Func<bool> _shouldExecute;
private readonly LogEventLevel _level;
public SerilogMiddlewareSpecification(ILogger logger, LogEventLevel level, Func<bool> shouldExecute )
{
_logger = logger;
_level = level;
_shouldExecute = shouldExecute;
}
public bool ShouldExecute(TContext context, CancellationToken cancellationToken)
{
if (_shouldExecute == null)
{
return true;
}
return _shouldExecute.Invoke();
}
public Task BeforeExecute(TContext context, CancellationToken cancellationToken)
{
return Task.FromResult(0);
}
public Task Execute(TContext context, CancellationToken cancellationToken)
{
if (ShouldExecute(context, cancellationToken))
{
switch (_level)
{
case LogEventLevel.Error:
_logger.Error("Receive message {@Message}", context.Message);
break;
case LogEventLevel.Debug:
_logger.Debug("Receive message {@Message}", context.Message);
break;
case LogEventLevel.Fatal:
_logger.Fatal("Receive message {@Message}", context.Message);
break;
case LogEventLevel.Information:
_logger.Information("Receive message {@Message}", context.Message);
break;
case LogEventLevel.Verbose:
_logger.Verbose("Receive message {@Message}", context.Message);
break;
case LogEventLevel.Warning:
_logger.Verbose("Receive message {@Message}", context.Message);
break;
default:
throw new ArgumentOutOfRangeException();
}
}
return Task.FromResult(0);
}
public Task AfterExecute(TContext context, CancellationToken cancellationToken)
{
return Task.FromResult(0);
}
public void OnException(Exception ex, TContext context)
{
throw ex;
}
}
var builder = new MediatorBuilder();
_mediator = builder.RegisterHandlers(() =>
{
return new List<MessageBinding>()
{
new MessageBinding(typeof(TestBaseCommand), typeof(TestBaseCommandHandlerRaiseEvent)),
new MessageBinding(typeof(TestEvent), typeof(TestEventHandler)),
new MessageBinding(typeof(GetGuidRequest), typeof(GetGuidRequestHandler))
};
})
.ConfigureGlobalReceivePipe(x =>
{
x.UseDummySave();
})
.ConfigureCommandReceivePipe(x =>
{
x.UseConsoleLogger1();
})
.ConfigureEventReceivePipe(x =>
{
x.UseConsoleLogger2();
})
.ConfigureRequestPipe(x =>
{
x.UseConsoleLogger3();
})
.ConfigurePublishPipe(x =>
{
x.UseConsoleLogger4();
})
.Build();
As you might already noticed, mediator will deliver ReceiveContext to the handler and it has a property Message
which is the original message sent, in some cases you might have one event being handled in multiple handlers and you might want to share something between, ReceiveContext
would is good place that to register your service or instance. For example you can make a middleware and register the service from there.
public class SimpleMiddlewareSpecification<TContext> : IPipeSpecification<TContext>
where TContext : IContext<IMessage>
{
public bool ShouldExecute(TContext context)
{
return true;
}
public Task BeforeExecute(TContext context)
{
return Task.FromResult(0);
}
public Task Execute(TContext context)
{
if (ShouldExecute(context))
{
context.RegisterService(new DummyTransaction());
}
return Task.FromResult(0);
}
public Task AfterExecute(TContext context)
{
return Task.FromResult(0);
}
}
public Task Handle(ReceiveContext<SimpleCommand> context)
{
_simpleService.DoWork();
if (context.TryGetService(out DummyTransaction transaction))
{
transaction.Commit();
}
return Task.FromResult(0);
}
Install the nuget package Mediator.Net.Autofac
Install-Package Mediator.Net.Autofac
An extension method RegisterMediator for ContainerBuilder from Autofac is used to register the builder
The super simple use case
var mediaBuilder = new MediatorBuilder();
mediaBuilder.RegisterHandlers(typeof(TestContainer).Assembly);
var containerBuilder = new ContainerBuilder();
containerBuilder.RegisterMediator(mediaBuilder);
_container = containerBuilder.Build();
You can also setup middlewares for each pipe before register it
var mediaBuilder = new MediatorBuilder();
mediaBuilder.RegisterHandlers(typeof(TestContainer).Assembly)
.ConfigureCommandReceivePipe(x =>
{
x.UseSimpleMiddleware();
});
var containerBuilder = new ContainerBuilder();
containerBuilder.RegisterMediator(mediaBuilder);
_container = containerBuilder.Build();
Install-Package Mediator.Net.StructureMap
Setup an IContainer and do your normal registration, then pass it along with the MediatorBuilder to the StructureMapExtensions class to register Mediator.Net
var mediaBuilder = new MediatorBuilder();
mediaBuilder.RegisterHandlers(TestUtilAssembly.Assembly)
.ConfigureCommandReceivePipe(x =>
{
x.UseSimpleMiddleware();
});
_container = new Container();
_container.Configure(x =>
{
// Do your thing
});
StructureMapExtensions.Configure(mediaBuilder, _container);
Install-Package Mediator.Net.Unity
Setup an IUnityContainer and do your normal registration, then pass it along with the MediatorBuilder to the UnityExtensions class to register Mediator.Net
var mediaBuilder = new MediatorBuilder();
var mediaBuilder = new MediatorBuilder();
mediaBuilder.RegisterHandlers(TestUtilAssembly.Assembly)
.ConfigureCommandReceivePipe(x =>
{
x.UseSimpleMiddleware();
});
_container = new UnityContainer();
_container.RegisterType<SimpleService>();
_container.RegisterType<AnotherSimpleService>();
UnityExtensions.Configure(mediaBuilder, _container);
Install-Package Mediator.Net.SimpleInjector
We have created a helper class InjectHelper to register all necessary components for Mediator.Net
var mediaBuilder = new MediatorBuilder();
mediaBuilder.RegisterHandlers(TestUtilAssembly.Assembly)
.ConfigureCommandReceivePipe(x =>
{
x.UseSimpleMiddleware();
});
_container = new Container();
_container.Options.DefaultScopedLifestyle = new LifetimeScopeLifestyle();
_container.Register<SimpleService>();
_container.Register<AnotherSimpleService>();
InjectHelper.RegisterMediator(_container, mediaBuilder);
Thought that you can have transient registration for IMediator, but we recommend to use lifetime scope, you can do constructor injection as well as the following
using (var scope = _container.BeginLifetimeScope())
{
_mediator = scope.GetInstance<IMediator>();
_task = _mediator.RequestAsync<SimpleRequest, SimpleResponse>(new SimpleRequest());
}
One of the key feature for Mediator.Net is you can plug as many middlewares as you like, we have implemented some common one as below
Install-Package Mediator.Net.Middlewares.UnitOfWork
This middleware provide a CommittableTransaction inside the context, handlers can enlist the transaction if it requires UnitOfWork Mediator.Net.Middlewares.UnitOfWork - Middleware for Mediator.Net to support unit of work.
Install-Package Mediator.Net.Middlewares.Serilog
This middleware logs every message by using Serilog
Install-Package Mediator.Net.Middlewares.EventStore
Middleware for Mediator.Net to write events to GetEventStore, it is a Middleware for Mediator.Net that plugs into the publish pipeline Mediator.Net.Middlewares.UnitOfWork - Middleware for Mediator.Net to persist event to EventStore.