MessageQueueExtensions 1.0.0

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

// Install MessageQueueExtensions as a Cake Tool
#tool nuget:?package=MessageQueueExtensions&version=1.0.0

MessageQueueExtensions

NuGet version Downloads Build Status codecov license

The boilerplate you always want but never take the time to write for when you want your API to also have some Redis stuff going on in the background.

Now, seriously, if you are thinking of using StackExchange.Redis as a means of inter-service communication and come across the question: "But where should I put the code that processes new messages?" then this library intends to give you a simple and familiar solution to that.

This is heavily inspired by NestJS Queue handling.

Getting Started

First you need to register a class implementing IMessageQueue as a service and tell your app builder to instantiate all the processors you have for your MQs.

This library is independent of the underlying message queue so even if I'm using redis in this example you can use any message queue you like.

public class RedisAdapter : IMessageQueue
{
    private ISubscriber Subscriber { get; }

    public RedisAdapter(IConfiguration config)
    {
        var redis = ConnectionMultiplexer.Connect(config.GetSection("Redis:Host").Value);
        Subscriber = redis.GetSubscriber();
    }

    public void RegisterProcessor(string queueName, IProcessor processor) =>
        Subscriber.Subscribe(queueName)
            .OnMessage(msg => processor.OnMessage(msg.Message));

    public void RegisterProcessor(string queueName, IAsyncProcessor processor) =>
        Subscriber.Subscribe(queueName)
            .OnMessage(msg => processor.OnMessageAsync(msg.Message));
}
public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSingleton<IMessageQueue, RedisWrapper>();
        // ...
    }

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        app.UseRedisProcessors();
        // ...
    }
}

I said processors, right? Processors are classes that implement either IProcessor or IAsyncProcessor and their responsibility is to handle new messages that get published to an MQ. The way they know what MQ they need to listen to is via the ProcessorAttribute.

The IApplicationBuilder.UseProcessors extension method that I added is the one that instantiates all the processors you declare in your assembly and inject their dependencies. This way you have the same dependency injection capabilities you do with your ASP.NET Core controllers and services in general.

As an example, say you had an MQ named test and you wanted to print every value (of type string) that went into that MQ. This is what that processor would look like:

[Processor("queue")]
public sealed class TestProcessor : IProcessor
{
    public void OnMessage(object message)
    {
        Console.WriteLine(message);
    }
}

If, instead, you need to do some async operation each time your MQ has a message pushed to it then the changes are subtle, here is a simple example that does the same thing the synchronous processor does but waits a second before doing it:

[Processor("test")]
public sealed class AsyncTestProcessor : IAsyncProcessor
{
    public Task OnMessageAsync(object message)
    {
        await Task.Delay(1000);
        Console.WriteLine(message);
    }
}
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 was computed.  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 netcoreapp3.1 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.0 463 11/4/2020