CCSWE.nanoFramework.Mediator 1.0.75

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.75                
NuGet\Install-Package CCSWE.nanoFramework.Mediator -Version 1.0.75                
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.75" />                
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.75                
#r "nuget: CCSWE.nanoFramework.Mediator, 1.0.75"                
#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.75

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

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.76 41 12/26/2024
1.0.75 73 12/19/2024
1.0.74 113 12/12/2024
1.0.73 86 12/5/2024
1.0.72 94 11/28/2024
1.0.71 82 10/31/2024
1.0.70 91 10/24/2024
1.0.69 101 10/10/2024
1.0.68 91 10/3/2024
1.0.67 93 9/26/2024
1.0.66 93 9/23/2024
1.0.65 92 9/22/2024
1.0.64 92 9/21/2024
1.0.63 115 9/21/2024
1.0.62 133 9/14/2024
1.0.61 109 9/13/2024
1.0.59 105 9/2/2024
1.0.58 106 9/1/2024
1.0.57 104 8/31/2024
1.0.56 104 8/31/2024
1.0.55 130 8/14/2024
1.0.54 126 8/13/2024
1.0.53 116 8/11/2024
1.0.52 113 8/11/2024
1.0.51 118 8/8/2024
1.0.50 104 8/7/2024
1.0.49 114 8/6/2024
1.0.48 86 8/4/2024
1.0.47 83 8/3/2024
1.0.46 92 8/2/2024
1.0.45 97 8/2/2024
1.0.44 87 7/29/2024
1.0.43 75 7/27/2024
1.0.42 90 7/26/2024
1.0.41 87 7/25/2024
1.0.40 100 7/24/2024
1.0.39 113 7/19/2024
1.0.38 102 7/17/2024
1.0.37 97 7/15/2024
1.0.36 90 7/14/2024
1.0.35 108 7/13/2024
1.0.34 101 7/12/2024
1.0.33 124 6/16/2024
1.0.32 106 6/14/2024
1.0.31 107 6/13/2024
1.0.27 105 6/7/2024
1.0.26 113 6/6/2024
1.0.25 107 6/5/2024
1.0.24 108 6/5/2024
1.0.22 107 5/25/2024
1.0.21 110 5/24/2024
1.0.20 102 5/23/2024
1.0.19 116 5/21/2024
1.0.18 118 5/20/2024
1.0.17 109 5/19/2024
1.0.16 114 5/19/2024
1.0.15 118 5/19/2024
1.0.14 106 5/18/2024
1.0.12 110 5/16/2024
1.0.11 122 5/15/2024
1.0.10 95 5/13/2024
1.0.9 98 5/11/2024
1.0.8 101 5/10/2024
1.0.7 114 4/27/2024
1.0.6 116 4/26/2024
1.0.5 115 4/25/2024
1.0.4 113 4/25/2024
1.0.3 123 4/23/2024
1.0.2 121 4/20/2024
1.0.1 118 4/19/2024
1.0.0 119 4/19/2024
0.3.31 117 4/17/2024
0.3.30 129 4/13/2024
0.3.29 103 4/12/2024
0.3.28 119 4/11/2024
0.3.27 114 4/10/2024
0.3.26 112 4/9/2024
0.3.25 116 4/8/2024
0.3.24 99 4/7/2024
0.3.23 126 4/6/2024
0.3.22 114 4/5/2024
0.3.21 110 4/4/2024
0.3.20 112 4/3/2024
0.3.19 122 3/24/2024
0.3.18 127 3/22/2024
0.3.17 112 3/21/2024
0.3.16 156 2/6/2024
0.3.15 119 2/3/2024
0.3.14 116 2/1/2024
0.3.13 108 1/27/2024
0.3.12 106 1/26/2024
0.3.11 248 11/23/2023
0.3.10 136 11/22/2023
0.3.9 138 11/21/2023
0.3.8 152 11/17/2023
0.3.7 152 11/14/2023
0.3.6 130 11/13/2023
0.3.5 138 11/12/2023
0.3.4 135 11/12/2023
0.3.3 129 11/12/2023
0.3.2 125 11/12/2023
0.3.1 143 11/10/2023
0.3.0 136 11/10/2023
0.2.14 144 11/9/2023
0.2.13 139 11/8/2023
0.2.12 128 11/7/2023
0.2.10 151 11/7/2023
0.2.9 189 11/6/2023
0.2.7 191 11/6/2023
0.2.6 160 11/4/2023
0.2.5 153 11/3/2023
0.2.4 145 11/2/2023
0.2.3 143 11/2/2023
0.2.2 149 11/2/2023
0.2.1 142 10/30/2023
0.2.0 133 10/30/2023
0.1.8 158 10/28/2023
0.1.7 141 10/24/2023
0.1.6 141 10/24/2023
0.1.5 156 10/24/2023
0.1.4 153 10/24/2023
0.1.3 150 10/20/2023
0.1.2-beta 143 10/20/2023
0.1.1-beta 136 10/20/2023