TimeWarp.Mediator 14.0.0-beta.1

Prefix Reserved
This is a prerelease version of TimeWarp.Mediator.
dotnet add package TimeWarp.Mediator --version 14.0.0-beta.1
                    
NuGet\Install-Package TimeWarp.Mediator -Version 14.0.0-beta.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TimeWarp.Mediator" Version="14.0.0-beta.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TimeWarp.Mediator" Version="14.0.0-beta.1" />
                    
Directory.Packages.props
<PackageReference Include="TimeWarp.Mediator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TimeWarp.Mediator --version 14.0.0-beta.1
                    
#r "nuget: TimeWarp.Mediator, 14.0.0-beta.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TimeWarp.Mediator@14.0.0-beta.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TimeWarp.Mediator&version=14.0.0-beta.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=TimeWarp.Mediator&version=14.0.0-beta.1&prerelease
                    
Install as a Cake Tool

TimeWarp Mediator

CI NuGet NuGet Downloads

Simple, unambitious mediator implementation in .NET

In-process messaging with no dependencies.

Supports request/response, commands, queries, notifications and events, synchronous and async with intelligent dispatching via C# generic variance.

About This Fork

TimeWarp.Mediator is a fork of the excellent MediatR library by Jimmy Bogard. We created this fork to:

  • ✅ Correct the spelling from "MediatR" to "Mediator"
  • ✅ Release under The Unlicense for maximum freedom
  • ✅ Maintain full API compatibility with MediatR
  • ✅ Add helpful diagnostic tools like GetPipelineInfo()

Migration from MediatR

Migrating from MediatR is the 13.x reflection rename — see our migration guide. That path is AddMediator(), not source generation.

Two stacks (read this before AddMediator)

This repository ships two independent dispatchers. Calling AddMediator() does not register the source-generated mediator.

Registration Dispatcher
services.AddMediator(...) Reflection MediatR fork (13.x runtime, still in this repo)
services.AddGeneratedMediator() Source-generated unscoped IMediator / ISender / IPublisher
services.AddGeneratedMediator<TScope>() Source-generated named pipeline (ISender<TScope> / IPublisher<TScope>)

14.0.0-beta is not a drop-in for 13.0.0. As of 14.0.0-beta.1, the generated stack is proven only against the M1/M2 golden files in this repo. Do not bump a 13.0.0 host to 14.0.0-beta and keep AddMediator(...) expecting source-gen, AOT-clean dispatch, or named pipelines. TimeWarp.State and TimeWarp.Nuru must call AddGeneratedMediator() / AddGeneratedMediator<TScope>(). This tree's <Version> is 14.0.0-beta.1; nuget.org still serves 13.0.0 until the 005-003 prerelease publish.

GitHub issue #52 stays open until a stable 14.0.0.

Comparison: documentation/generated-vs-legacy.md. Milestones: m1-generated-mediator.md, m2-named-pipelines.md.


Original MediatR

CI NuGet NuGet MyGet (dev)

Simple mediator implementation in .NET

In-process messaging with no dependencies.

Supports request/response, commands, queries, notifications and events, synchronous and async with intelligent dispatching via C# generic variance.

Examples in the wiki.

Installing the reflection stack (AddMediator)

NuGet 13.0.0 is the last published reflection line. Install TimeWarp.Mediator:

dotnet add package TimeWarp.Mediator --version 13.0.0

This is the MediatR-fork runtime: assembly scan, wrappers, MakeGenericType. 14.0.0-beta still contains this runtime, but that prerelease is not a drop-in for 13.0.0 (see Two stacks).

Installing the generated stack (AddGeneratedMediator)

A generated host needs Contracts + Generators. Analyzers ride inside the Generators nupkg; add TimeWarp.Mediator.Analyzers only when the generator is not referenced.

<ItemGroup>
  <PackageReference Include="TimeWarp.Mediator.Contracts" Version="14.0.0-beta.1" />
  <PackageReference Include="TimeWarp.Mediator.Generators" Version="14.0.0-beta.1" />
</ItemGroup>
dotnet add package TimeWarp.Mediator.Contracts --version 14.0.0-beta.1
dotnet add package TimeWarp.Mediator.Generators --version 14.0.0-beta.1
# library-only (no generator):
dotnet add package TimeWarp.Mediator.Analyzers --version 14.0.0-beta.1

Do not add only TimeWarp.Mediator and call AddMediator() expecting this stack.

Using Contracts-Only Package

To reference only the contracts for TimeWarp.Mediator, which includes:

  • IRequest (including generic variants)
  • INotification
  • IStreamRequest
  • ISender / ISender<TScope>, IPublisher / IPublisher<TScope>
  • Membership attributes (MediatorAssembly, MediatorScope, MediatorBehavior)

Add a package reference to TimeWarp.Mediator.Contracts.

This package is useful when contracts live in a separate assembly from handlers (API / gRPC / Blazor). A generated host still needs Generators on the compilation that emits the mediator.

Generated membership and named pipelines

Hosts that reference Generators get TimeWarpMediatorAssembly=true from the package buildTransitive props. Domain libraries that only reference Analyzers must opt in:

[assembly: MediatorAssembly]
[assembly: MediatorBehavior(typeof(LoggingBehavior<,>))]
[assembly: MediatorBehavior(typeof(ClientStampBehavior<,>), Scope = typeof(ClientPipeline))]

Named pipelines use marker types, not strings (ClientPipeline / ServerPipeline):

public sealed class ClientPipeline
{
}

[MediatorScope(typeof(ClientPipeline))]
public sealed class ClientPing : IRequest<string>
{
}

[MediatorModule("Orders")] joins the graph. It does not name a pipeline.

services.AddGeneratedMediator();
services.AddGeneratedMediator<ClientPipeline>();
services.AddGeneratedMediator<ServerPipeline>();

Details: documentation/generated-vs-legacy.md, documentation/m1-generated-mediator.md, documentation/m2-named-pipelines.md.

Registering reflection AddMediator with IServiceCollection

The reflection package supports Microsoft.Extensions.DependencyInjection.Abstractions directly. This is not the generated dispatcher. To scan and register the fork runtime:

services.AddMediator(cfg => cfg.RegisterServicesFromAssemblyContaining<Startup>());

or with an assembly:

services.AddMediator(cfg => cfg.RegisterServicesFromAssembly(typeof(Startup).Assembly));

This registers:

  • IMediator as transient
  • ISender as transient
  • IPublisher as transient
  • IRequestHandler<,> concrete implementations as transient
  • IRequestHandler<> concrete implementations as transient
  • INotificationHandler<> concrete implementations as transient
  • IStreamRequestHandler<> concrete implementations as transient
  • IRequestExceptionHandler<,,> concrete implementations as transient
  • IRequestExceptionAction<,>) concrete implementations as transient

This also registers open generic implementations for:

  • INotificationHandler<>
  • IRequestExceptionHandler<,,>
  • IRequestExceptionAction<,>

To register behaviors, stream behaviors, pre/post processors:

services.AddMediator(cfg => {
    cfg.RegisterServicesFromAssembly(typeof(Startup).Assembly);
    cfg.AddBehavior<PingPongBehavior>();
    cfg.AddStreamBehavior<PingPongStreamBehavior>();
    cfg.AddRequestPreProcessor<PingPreProcessor>();
    cfg.AddRequestPostProcessor<PingPongPostProcessor>();
    cfg.AddOpenBehavior(typeof(GenericBehavior<,>));
    });

With additional methods for open generics and overloads for explicit service types.

License

TimeWarp Mediator is released under The Unlicense (see UNLICENSE). Original MediatR code by Jimmy Bogard is under Apache 2.0 (see NOTICE).

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on TimeWarp.Mediator:

Package Downloads
TimeWarp.Foundation.Contracts

Shared contracts, request/response markers, route/auth/query source generator, and common types for the TimeWarp foundation layer.

TimeWarp.Foundation.Server

ASP.NET server building blocks (modules, base endpoints, CORS, service discovery) for the TimeWarp foundation layer.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
14.0.0-beta.1 67 9/2/2026
13.0.0 13,246 8/4/2025
13.0.0-beta.4 199 7/30/2025
13.0.0-beta.3 212 7/28/2025
13.0.0-beta.2 144 7/5/2025
13.0.0-beta.1 138 7/5/2025