CCSWE.nanoFramework.Mediator 1.0.45

There is a newer version of this package available.
See the version list below for details.
dotnet add package CCSWE.nanoFramework.Mediator --version 1.0.45                
NuGet\Install-Package CCSWE.nanoFramework.Mediator -Version 1.0.45                
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="CCSWE.nanoFramework.Mediator" Version="1.0.45" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CCSWE.nanoFramework.Mediator --version 1.0.45                
#r "nuget: CCSWE.nanoFramework.Mediator, 1.0.45"                
#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.
// Install CCSWE.nanoFramework.Mediator as a Cake Addin
#addin nuget:?package=CCSWE.nanoFramework.Mediator&version=1.0.45

// Install CCSWE.nanoFramework.Mediator as a Cake Tool
#tool nuget:?package=CCSWE.nanoFramework.Mediator&version=1.0.45                

Build License NuGet

CCSWE.nanoFramework.Mediator

A simple asynchronous mediator implementation for nanoFramework. Provides in-process publisher-subscriber communication while keeping all parties decoupled.

Based on Mako-IoT.Device.Services.Mediator

Usage

Create classes for your events

public class Event1 : IMediatorEvent
{
    public string Data { get; set; }
}

public class Event2 : IMediatorEvent
{
    public string Text { get; set; }
}

Your event subscriber must implement IMediatorEventHandler interface

public class EventHandlerService : IMediatorEventHandler
{
    public void HandleEvent(IMediatorEvent mediatorEvent)
    {
        switch (mediatorEvent)
        {
            case Event1 event1:
                Debug.WriteLine($"[{nameof(EventHandlerService)}] Event1 received. The data is: {event1.Data}");
                break;
            case Event2 event2:
                Debug.WriteLine($"[{nameof(EventHandlerService)}] Event2 received The text is: {event2.Text}");
                break;
        }
    }
}

Use IMediator to publish events

public class EventPublisherService : IEventPublisherService
{
    private readonly IMediator _mediator;

    public EventPublisherService(IMediator mediator)
    {
        _mediator = mediator;
    }

    public void DoSomething()
    {
        _mediator.Publish(new Event2 { Text = "Hello from EventPublisherService" });
    }
}

Register AsyncMediator and singleton subscribers to an IHostBuilder ...

    var hostBuilder = new HostBuilder();
    hostBuilder.UseMediator(options =>
    {
        options.AddSubscriber(typeof(Event1), typeof(Service2));
        options.AddSubscriber(typeof(Event2), typeof(Service2));
    });

... or directly to an IServiceCollection

    var serviceCollection = new ServiceCollection();
    serviceCollection.AddMediator(options =>
    {
        options.AddSubscriber(typeof(Event1), typeof(Service2));
        options.AddSubscriber(typeof(Event2), typeof(Service2));
    });

For transient and scoped services you can use the Subscribe and Unsubscribe overloads that take a specific instance.

public class TransientService : IDisposable
{
    private readonly IMediator _mediator;

    public TransientService(IMediator mediator)
    {
        _mediator = mediator;
        _mediator.Subscribe(typeof(Event1), this);
        _mediator.Subscribe(typeof(Event2), this);
    }

    public void Dispose()
    {
        _mediator.Unsubscribe(typeof(Event1), this);
        _mediator.Unsubscribe(typeof(Event2), this);
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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.67 9 9/26/2024
1.0.66 66 9/23/2024
1.0.65 69 9/22/2024
1.0.64 67 9/21/2024
1.0.63 82 9/21/2024
1.0.62 108 9/14/2024
1.0.61 82 9/13/2024
1.0.59 82 9/2/2024
1.0.58 80 9/1/2024
1.0.57 81 8/31/2024
1.0.56 84 8/31/2024
1.0.55 107 8/14/2024
1.0.54 105 8/13/2024
1.0.53 94 8/11/2024
1.0.52 95 8/11/2024
1.0.51 95 8/8/2024
1.0.50 85 8/7/2024
1.0.49 87 8/6/2024
1.0.48 64 8/4/2024
1.0.47 63 8/3/2024
1.0.46 71 8/2/2024
1.0.45 73 8/2/2024
1.0.44 68 7/29/2024
1.0.43 59 7/27/2024
1.0.42 72 7/26/2024
1.0.41 70 7/25/2024
1.0.40 81 7/24/2024
1.0.39 92 7/19/2024
1.0.38 86 7/17/2024
1.0.37 82 7/15/2024
1.0.36 75 7/14/2024
1.0.35 89 7/13/2024
1.0.34 86 7/12/2024
1.0.33 109 6/16/2024
1.0.32 94 6/14/2024
1.0.31 92 6/13/2024
1.0.27 90 6/7/2024
1.0.26 98 6/6/2024
1.0.25 93 6/5/2024
1.0.24 93 6/5/2024
1.0.22 94 5/25/2024
1.0.21 97 5/24/2024
1.0.20 90 5/23/2024
1.0.19 101 5/21/2024
1.0.18 104 5/20/2024
1.0.17 94 5/19/2024
1.0.16 98 5/19/2024
1.0.15 104 5/19/2024
1.0.14 93 5/18/2024
1.0.12 95 5/16/2024
1.0.11 104 5/15/2024
1.0.10 80 5/13/2024
1.0.9 82 5/11/2024
1.0.8 88 5/10/2024
1.0.7 105 4/27/2024
1.0.6 106 4/26/2024
1.0.5 106 4/25/2024
1.0.4 99 4/25/2024
1.0.3 107 4/23/2024
1.0.2 110 4/20/2024
1.0.1 108 4/19/2024
1.0.0 110 4/19/2024
0.3.31 105 4/17/2024
0.3.30 118 4/13/2024
0.3.29 91 4/12/2024
0.3.28 108 4/11/2024
0.3.27 103 4/10/2024
0.3.26 100 4/9/2024
0.3.25 101 4/8/2024
0.3.24 89 4/7/2024
0.3.23 115 4/6/2024
0.3.22 104 4/5/2024
0.3.21 98 4/4/2024
0.3.20 100 4/3/2024
0.3.19 113 3/24/2024
0.3.18 114 3/22/2024
0.3.17 94 3/21/2024
0.3.16 139 2/6/2024
0.3.15 109 2/3/2024
0.3.14 103 2/1/2024
0.3.13 97 1/27/2024
0.3.12 95 1/26/2024
0.3.11 238 11/23/2023
0.3.10 127 11/22/2023
0.3.9 126 11/21/2023
0.3.8 139 11/17/2023
0.3.7 143 11/14/2023
0.3.6 121 11/13/2023
0.3.5 129 11/12/2023
0.3.4 125 11/12/2023
0.3.3 117 11/12/2023
0.3.2 114 11/12/2023
0.3.1 129 11/10/2023
0.3.0 125 11/10/2023
0.2.14 131 11/9/2023
0.2.13 127 11/8/2023
0.2.12 119 11/7/2023
0.2.10 128 11/7/2023
0.2.9 149 11/6/2023
0.2.7 152 11/6/2023
0.2.6 148 11/4/2023
0.2.5 142 11/3/2023
0.2.4 133 11/2/2023
0.2.3 134 11/2/2023
0.2.2 140 11/2/2023
0.2.1 130 10/30/2023
0.2.0 122 10/30/2023
0.1.8 146 10/28/2023
0.1.7 128 10/24/2023
0.1.6 127 10/24/2023
0.1.5 144 10/24/2023
0.1.4 141 10/24/2023
0.1.3 136 10/20/2023
0.1.2-beta 131 10/20/2023
0.1.1-beta 126 10/20/2023