MakoIoT.Device.Services.Mediator 1.0.64.60024

dotnet add package MakoIoT.Device.Services.Mediator --version 1.0.64.60024                
NuGet\Install-Package MakoIoT.Device.Services.Mediator -Version 1.0.64.60024                
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="MakoIoT.Device.Services.Mediator" Version="1.0.64.60024" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MakoIoT.Device.Services.Mediator --version 1.0.64.60024                
#r "nuget: MakoIoT.Device.Services.Mediator, 1.0.64.60024"                
#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 MakoIoT.Device.Services.Mediator as a Cake Addin
#addin nuget:?package=MakoIoT.Device.Services.Mediator&version=1.0.64.60024

// Install MakoIoT.Device.Services.Mediator as a Cake Tool
#tool nuget:?package=MakoIoT.Device.Services.Mediator&version=1.0.64.60024                

Mako-IoT.Device.Services.Mediator

Mediator pattern implementation. Provides in-process publisher-subscriber communication while keeping all parties decoupled.

Usage

See Mediator sample

Create classes for your events

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

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

Your event subscriber must implement IEventHandler interface

public class Service2 : IEventHandler
{
    public void Handle(IEvent @event)
    {
        switch (@event)
        {
            case Event1 event1:
                Debug.WriteLine($"[{nameof(Service2)}] Event1 received. The data is: {event1.Data}");
                break;
            case Event2 event2:
                Debug.WriteLine($"[{nameof(Service2)}] Event2 received The text is: {event2.Text}");
                break;
        }
    }
}

Use IMediator to publish events

public class Service1 : IService1
{
    private readonly IMediator _mediator;

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

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

Register Mediator and singleton subscribers in DeviceBuilder

DeviceBuilder.Create()
  .AddMediator(options =>
  {
      options.AddSubscriber(typeof(Event1), typeof(Service2));
      options.AddSubscriber(typeof(Event2), typeof(Service2));
  })
  .Build()
  .Start()

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 (4)

Showing the top 4 NuGet packages that depend on MakoIoT.Device.Services.Mediator:

Package Downloads
MakoIoT.Device.Services.ConfigurationManager

Configuration mode manager for MAKO-IoT

MakoIoT.Device.Services.ConfigurationApi

REST API for configuration with MAKO-IoT

MakoIoT.Device.Platform.LocalConfig

MAKO-IoT Platform local configuration library. On-device web server, WiFi AP

MakoIoT.Device.Services.Logging.Storage

Logging to flash storage and logs upload to Elasticsearch for MAKO-IoT

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.64.60024 165 3/20/2025
1.0.63.14171 275 3/11/2025
1.0.61.19880 624 2/27/2025
1.0.60.10419 166 2/26/2025
1.0.59.42289 410 2/20/2025
1.0.58.36645 369 2/18/2025
1.0.57.42352 402 11/28/2024
1.0.56.4697 160 11/27/2024
1.0.55.2648 168 11/26/2024
1.0.54.41107 177 11/25/2024
1.0.53.51021 361 11/19/2024
1.0.52.56154 836 10/18/2024
1.0.51.44660 238 10/16/2024
1.0.50.63396 491 9/26/2024
1.0.49.59837 399 9/20/2024
1.0.48.59964 430 9/12/2024
1.0.47.39935 512 8/27/2024
1.0.46.45075 449 8/10/2024
1.0.45.63754 228 8/5/2024
1.0.44.7886 698 6/12/2024
1.0.43.57607 1,158 5/17/2024
1.0.42.48945 1,346 4/8/2024
1.0.41.33870 796 3/22/2024
1.0.40.12180 246 3/21/2024
1.0.39.38843 2,104 1/6/2024
1.0.38.6937 447 12/30/2023
1.0.37.22301 464 12/19/2023
1.0.36.36218 853 12/1/2023
1.0.35.38046 233 12/1/2023
1.0.34.61610 611 11/17/2023
1.0.33.12388 295 11/16/2023
1.0.32.35604 641 11/11/2023
1.0.31.54540 1,133 10/12/2023
1.0.30.24296 904 10/6/2023
1.0.28.51374 318 10/6/2023
1.0.26.61682 1,990 5/24/2023
1.0.25.54621 218 5/24/2023
1.0.23.37503 300 5/23/2023
1.0.21.48055 168 5/22/2023
1.0.20.12163 395 5/22/2023