IceCoffee.Mediator 1.0.0

dotnet add package IceCoffee.Mediator --version 1.0.0
                    
NuGet\Install-Package IceCoffee.Mediator -Version 1.0.0
                    
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="IceCoffee.Mediator" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IceCoffee.Mediator" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="IceCoffee.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 IceCoffee.Mediator --version 1.0.0
                    
#r "nuget: IceCoffee.Mediator, 1.0.0"
                    
#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 IceCoffee.Mediator@1.0.0
                    
#: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=IceCoffee.Mediator&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=IceCoffee.Mediator&version=1.0.0
                    
Install as a Cake Tool

IceCoffee.Mediator

Package NuGet Stable Downloads
IceCoffee.Mediator IceCoffee.Mediator IceCoffee.Mediator

Description

A lightweight, type-safe Mediator for .NET designed for high performance and easy integration. It helps you decouple components in your application by sending messages and handling them through a central mediator.

Key Features

  • Inspired by MediatR and mitt.js: Combines robustness with a simple core concept.
  • Seamless DI Integration: Designed to work perfectly with Microsoft.Extensions.DependencyInjection.
  • Automatic Handler Registration: Scans assemblies to find and register notification handlers automatically.
  • Pluggable Publishing Strategies: Customize how notifications are handled, enabling advanced scenarios like parallel execution or robust error handling.
  • Zero External Dependencies: The core library has no external dependencies.

Quick Start

  1. Define a Notification:

    public class UserCreatedNotification : INotification
    {
        public int UserId { get; set; }
    }
    
  2. Create a Handler:

    public class WelcomeEmailSender : INotificationHandler<UserCreatedNotification>
    {
        public void Handle(UserCreatedNotification notification)
        {
            Console.WriteLine($"Welcome email sent to user {notification.UserId}!");
        }
    }
    
  3. Configure DI and Publish:

    var services = new ServiceCollection();
    
    // Register Mediator and automatically find and register all handlers in the current assembly
    services.AddMediator();
    // Or use a specific publisher strategy and lifetime and assemblies
    services.AddMediator<ForeachAwaitPublisher>(ServiceLifetime.Singleton, typeof(Program).Assembly);
    
    var serviceProvider = services.BuildServiceProvider();
    var mediator = serviceProvider.GetRequiredService<IMediator>();
    
    // Publish the notification
    mediator.Publish(new UserCreatedNotification { UserId = 101 });
    
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 208 7/7/2025