CCSWE.nanoFramework.Mediator 1.0.33

dotnet add package CCSWE.nanoFramework.Mediator --version 1.0.33
NuGet\Install-Package CCSWE.nanoFramework.Mediator -Version 1.0.33
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.33" />
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.33
#r "nuget: CCSWE.nanoFramework.Mediator, 1.0.33"
#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.33

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

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.33 74 6/16/2024
1.0.32 65 6/14/2024
1.0.31 60 6/13/2024
1.0.27 67 6/7/2024
1.0.26 70 6/6/2024
1.0.25 69 6/5/2024
1.0.24 69 6/5/2024
1.0.22 73 5/25/2024
1.0.21 72 5/24/2024
1.0.20 71 5/23/2024
1.0.19 77 5/21/2024
1.0.18 80 5/20/2024
1.0.17 79 5/19/2024
1.0.16 74 5/19/2024
1.0.15 80 5/19/2024
1.0.14 76 5/18/2024
1.0.12 78 5/16/2024
1.0.11 87 5/15/2024
1.0.10 58 5/13/2024
1.0.9 64 5/11/2024
1.0.8 66 5/10/2024
1.0.7 85 4/27/2024
1.0.6 90 4/26/2024
1.0.5 89 4/25/2024
1.0.4 81 4/25/2024
1.0.3 85 4/23/2024
1.0.2 85 4/20/2024
1.0.1 85 4/19/2024
1.0.0 86 4/19/2024
0.3.31 78 4/17/2024
0.3.30 98 4/13/2024
0.3.29 70 4/12/2024
0.3.28 82 4/11/2024
0.3.27 78 4/10/2024
0.3.26 78 4/9/2024
0.3.25 83 4/8/2024
0.3.24 69 4/7/2024
0.3.23 95 4/6/2024
0.3.22 80 4/5/2024
0.3.21 80 4/4/2024
0.3.20 84 4/3/2024
0.3.19 87 3/24/2024
0.3.18 95 3/22/2024
0.3.17 76 3/21/2024
0.3.16 101 2/6/2024
0.3.15 85 2/3/2024
0.3.14 80 2/1/2024
0.3.13 82 1/27/2024
0.3.12 77 1/26/2024
0.3.11 216 11/23/2023
0.3.10 107 11/22/2023
0.3.9 111 11/21/2023
0.3.8 120 11/17/2023
0.3.7 121 11/14/2023
0.3.6 101 11/13/2023
0.3.5 110 11/12/2023
0.3.4 108 11/12/2023
0.3.3 98 11/12/2023
0.3.2 96 11/12/2023
0.3.1 111 11/10/2023
0.3.0 107 11/10/2023
0.2.14 112 11/9/2023
0.2.13 109 11/8/2023
0.2.12 99 11/7/2023
0.2.10 103 11/7/2023
0.2.9 112 11/6/2023
0.2.7 115 11/6/2023
0.2.6 131 11/4/2023
0.2.5 119 11/3/2023
0.2.4 114 11/2/2023
0.2.3 114 11/2/2023
0.2.2 120 11/2/2023
0.2.1 112 10/30/2023
0.2.0 103 10/30/2023
0.1.8 126 10/28/2023
0.1.7 110 10/24/2023
0.1.6 106 10/24/2023
0.1.5 122 10/24/2023
0.1.4 121 10/24/2023
0.1.3 118 10/20/2023
0.1.2-beta 112 10/20/2023
0.1.1-beta 105 10/20/2023