CCSWE.nanoFramework.Mediator 0.3.12

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

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

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