microservice.toolkit.messagemediator 0.11.2

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

// Install microservice.toolkit.messagemediator as a Cake Tool
#tool nuget:?package=microservice.toolkit.messagemediator&version=0.11.2

Message mediator

The library is a work in progress. It is not yet considered production-ready.

Build Release License: MIT Nuget Nuget

An interface to define how cloud microservices interact each other across multi instances, using request-response pattern.

How to install

Package Manager

Install-Package microservice.toolkit.messagemediator -Version 0.11.2

.NET CLI

dotnet add package microservice.toolkit.messagemediator --version 0.11.2

Package Reference

<PackageReference Include="microservice.toolkit.messagemediator" Version="0.11.2" />

Introduction

In Microservice Toolkit, a microservice has a name (or pattern) and returns with the following structure:

{
    "error": 12,
    "payload": {
        // ...
    }
}

Where:

  • Error is the core of the error, it has value when an error occurs during service execution.
  • Payload is the output of the service, it has value when the execution goes well.

Only one of the fields can have a value: if "error" has a value, "payload" doesn't have it, and vice versa.

Implementations

Microservice Toolkit provides message mediator (IMessageMediator) implementations which can exchange messages in a single instance environment and in a multi instances environment using a message broker like RabbitMQ, Azure Service Bus or NATS.

Single instance environment:

Single instance

Multi instances environment:

Multi instances

Every implementation of message mediator requires a "service factory" which link service name (pattern) to its instance.

Local

<a name="local"></a> To use in a single instance environment, in a desktop application, or to testing.

No external dependencies needed.

No external service will be query/use.

RabbitMQ

<a name="rabbitmq"></a> RabbitMQ is an open-source and lightweight message broker which supports multiple messaging protocols. It can be deployed in distributed and federated configurations to meet high-scale, high-availability requirements. In addition, it's the most widely deployed message broker, used worldwide at small startups and large enterprises.

To start building RabbitMQ-based microservices, first install the required packages:

Install-Package RabbitMQ.Client -Version 6.2.2

Or:

<PackageReference Include="RabbitMQ.Client" Version="6.2.2" />

Azure Service Bus

<a name="servicebus"></a> To start building Azure Service Bus-based microservices, first install the required packages:

Install-Package Microsoft.Azure.ServiceBus -Version 5.1.3

Or:

<PackageReference Include="Microsoft.Azure.ServiceBus" Version="5.1.3"/>

NATS

<a name="nats"></a> To start building NATS-based microservices, first install the required packages:

Install-Package NATS.Client -Version 1.0.2

Or:

<PackageReference Include="NATS.Clients" Version="1.0.2"/>

How to use

Service implementation

To implement a service, extend the abstract class "Service<TRequest, TPayload>", where:

  • "TRequest" is the service input (or request)
  • "TPayload" is the service output (or response payload)

Example code:

[Microservice("/user/exists")]
public class UserExists : Service<UserExistsRequest, UserExistsResponse>
{
    public async override Task<ServiceResponse<UserExistsResponse>> Run(UserExistsRequest request)
    {
        return this.SuccessfulResponse(new UserExistsResponse
        {
            Exists = "Alice" == request.Username
        });
    }
}

If the 'MicroService' property is not used, the service will be registered with its full qualified name.

Services registration

To register services, service factory and mediator into IoC (using Microsoft Dependency Injection), add to program startup ("services" is an instance of IServiceCollection):

using microservice.toolkit.messagemediator.extension;

[...]

// Registers all the microservices in the same assembly of "UserExists" class.
// Registers all the microservices as Singleton.
// Registers the service factory as Singleton.
var myAssembly = Assembly.GetAssembly(typeof(UserExists));
services.AddServiceContext(myAssembly);

[...]

// Registers message mediator 
services.AddSingleton<IMessageMediator, LocalMessageMediator>();

Service call

To call a service using a mediator:

private readonly IMessageMediator mediator;

[...]

// Using dependency injection
public MyProgram(IMessageMediator mediator){
    this.mediator = mediator;
}

[...]

// to explicit only payload type:
var response = await mediator.Send<UserExistsResponse>("/user/exists", new UserExistsRequest("Alice")));
// or, to explicit request and payload type:
var response = await mediator.Send<UserExistsRequest, UserExistsResponse>("/user/exists", new UserExistsRequest("Alice")));

if(response.Error != 0){
    // handle error
}
else{
    // handle payload
    var responsePayload = response.Payload;
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on microservice.toolkit.messagemediator:

Package Downloads
microservice.toolkit.entitystoremanager

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.11.2 125 4/6/2024
0.11.1 101 3/30/2024
0.11.0 95 3/30/2024
0.10.2 281 3/15/2023
0.10.1 338 1/18/2023
0.10.0 310 1/11/2023
0.9.1 323 11/22/2022
0.9.0 352 11/16/2022
0.8.0 449 10/12/2022
0.7.0 439 4/28/2022
0.6.2 441 2/28/2022
0.6.1 443 2/21/2022
0.6.0 500 1/15/2022
0.5.0 334 12/8/2021
0.4.9 291 12/2/2021
0.4.8 267 12/2/2021
0.4.7 289 12/2/2021
0.4.6 296 12/1/2021
0.4.5 3,451 11/25/2021
0.4.4 343 11/2/2021
0.4.3 325 11/2/2021
0.4.2 350 10/27/2021
0.4.1 392 10/21/2021
0.4.0 492 10/3/2021