Simple, fast, reliable message delivery for .NET.
Pelican.Mediator is a lightweight Mediator pattern implementation for .NET applications. It supports request handlers, notifications, dependency injection, pipeline behaviors, pre-processors, and post-processors.
dotnet add package Pelican.Mediator
dotnet add package Pelican.TestingBoth packages target:
net8.0net9.0net10.0
Create a request and handler:
public sealed record Ping(string Message) : IRequest<string>;
public sealed class PingHandler : IRequestHandler<Ping, string>
{
public Task<string> Handle(Ping request, CancellationToken cancellationToken = default)
=> Task.FromResult($"Pong: {request.Message}");
}Register Pelican:
services.AddPelican(typeof(PingHandler).Assembly);Send a request:
public sealed class Generator
{
private readonly IMediator _mediator;
public Generator(IMediator mediator)
{
_mediator = mediator;
}
public async Task Invoke()
{
var response = await _mediator.Send(new Ping("Ping"));
Console.WriteLine(response);
}
}public sealed record CustomerCreated(string Name) : INotification;
public sealed class WelcomeEmailHandler : INotificationHandler<CustomerCreated>
{
public Task Handle(CustomerCreated notification, CancellationToken cancellationToken = default)
{
Console.WriteLine($"Welcome {notification.Name}");
return Task.CompletedTask;
}
}Publish the notification:
await mediator.Publish(new CustomerCreated("Ada"));Pipeline behaviors wrap the handler execution:
public sealed class LoggingBehavior<TRequest, TResponse> : IPipelineBehavior<TRequest, TResponse>
{
public async Task<TResponse> Handle(
TRequest request,
Handler<TResponse> next,
CancellationToken cancellationToken = default)
{
Console.WriteLine($"Handling {typeof(TRequest).Name}");
var response = await next(cancellationToken);
Console.WriteLine($"Handled {typeof(TRequest).Name}");
return response;
}
}Register behaviors with dependency injection:
services.AddTransient(typeof(IPipelineBehavior<,>), typeof(LoggingBehavior<,>));Requests without a response use Pelican.Mediator.Void as the pipeline response type:
public sealed class AuditCommandBehavior<TRequest> : IPipelineBehavior<TRequest, Pelican.Mediator.Void>
where TRequest : IRequest
{
public Task<Pelican.Mediator.Void> Handle(
TRequest request,
Handler<Pelican.Mediator.Void> next,
CancellationToken cancellationToken = default)
=> next(cancellationToken);
}public sealed class LoggingPreProcessor<TRequest> : IPreProcessor<TRequest>
{
public Task Handle(TRequest request, CancellationToken cancellationToken = default)
{
Console.WriteLine("Before handler");
return Task.CompletedTask;
}
}public sealed class LoggingPostProcessor<TRequest, TResponse> : IPostProcessor<TRequest, TResponse>
{
public Task Handle(TRequest request, TResponse response, CancellationToken cancellationToken = default)
{
Console.WriteLine("After handler");
return Task.CompletedTask;
}
}Register processors:
services.AddTransient(typeof(IPreProcessor<>), typeof(LoggingPreProcessor<>));
services.AddTransient(typeof(IPostProcessor<,>), typeof(LoggingPostProcessor<,>));Pelican.Testing provides a test dispatcher and trace assertions for request dispatch, handler resolution, pipeline behavior, replacement handlers, failures, and no-response requests.
Register handlers from one or more assemblies:
services.AddPelicanTesting(typeof(CreateCustomerCommandHandler).Assembly);Send a request through the test dispatcher:
var provider = services.BuildServiceProvider();
var pelican = provider.GetRequiredService<IPelicanTesting>();
var response = await pelican.SendAsync(command);Replace a handler for tests:
services.ReplacePelicanHandler<CreateCustomerRequest, CustomerResponse, FakeHandler>();Inspect and assert the dispatch trace:
var trace = pelican.Trace;
trace.ShouldHandle<CreateCustomerRequest, CustomerResponse>();
trace.ShouldContainBehavior<ValidationBehavior<CreateCustomerRequest, CustomerResponse>>();
trace.ShouldRunBehaviorBefore<ValidationBehavior<CreateCustomerRequest, CustomerResponse>, HandlerExecution>();No-response requests are supported:
await pelican.SendAsync(new RebuildCustomerIndex());
pelican.Trace.ShouldHandle<RebuildCustomerIndex>();External test hosts can integrate Pelican testing with a small wrapper:
public static class TestHostPelicanExtensions
{
public static IServiceCollection UsePelicanTesting(
this IServiceCollection services,
params Assembly[] assemblies)
=> services.AddPelicanTestingAdapter(assemblies);
}