JustSaying.FlexiblePublishers 7.0.2

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

// Install JustSaying.FlexiblePublishers as a Cake Tool
#tool nuget:?package=JustSaying.FlexiblePublishers&version=7.0.2

JustSaying.FlexiblePublishers

A set of JustSaying IMessagePublisher replacements to perform different functions

QueuedMessagePublisher

A publisher that queues messages to be published at a later time. This is useful for when you want to publish messages in UoW functionality and you don't want to send the messages until the UoW is committed.

When publishing a message it can be optionally marked as isWhitelisted. When processing the queue, all messages can be sent or only the ones marked as isWhitelisted.

A middleware is provided which add this functionality onto IHandlerAsync<> handlers automatically.

Usage

Either the IQueuedMessagePublisher interface can be registered into DI which wraps the IMessagePublisher instance, OR the IQueuedMessagePublisher can be registered for both IMessagePublisher resolutions and IQueuedMessagePublisher resolutions, which is better as 3rd party code messages will be queued into the UoW as expected.

These examples use SimpleInjector but the theory is the same for all.

Setting up:

// Example for existing IMessagePublisher registration
// container.RegisterSingleton(() => builder.BuildPublisher());

// Approach to wrap the built IMessagePublisher into a QueuedMessagePublisher, then register this as both IMessagePublisher and IQueuedMessagePublisher
var messagingRegistration = Lifestyle.Scoped.CreateRegistration(
    () => new QueuedMessagePublisher(loggerFactory, () => builder.BuildPublisher()),
    container);

container.AddRegistration(typeof(IMessagePublisher), messagingRegistration);
container.AddRegistration(typeof(IQueuedMessagePublisher), messagingRegistration);
Configuring middleware:
x.ForTopic<TestMessage>(
        cfg =>
        {
            cfg.WithMiddlewareConfiguration(m =>
            {
                m.UseQueuedMessagesMiddleware();
                m.UseDefaults<TestMessage>(typeof(TestMessageHandler)); // Add default middleware pipeline
            });
        });
Using in app:

Publish a message normally:

private readonly IMessagePublisher _messagePublisher;

await _messagePublisher.PublishAsync(new TestMessage());

Publish a "isWhitelisted" message - this requires the IQueuedMessageInterface

private readonly IQueuedMessagePublisher _messagePublisher;

await _messagePublisher.PublishAsync(new TestMessage(), isWhitelisted: true);

Additional Notes

If using elsewhere (UoW approach on web controllers), then the queue must be processed at the end of the request handler. If using with a fully manual implementation then the queue must be processed once ready.

There is an example middleware for just with JustSaying 7 in here, and the same approach can be provided to middlewares for Mediator, ASP.NET Core pipelines etc.

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.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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

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
7.0.2 1,785 2/9/2024
7.0.1 1,496 2/9/2024
7.0.0 387 2/5/2024
1.0.20 92 2/2/2024
1.0.19 74 2/2/2024
1.0.17 67 2/2/2024
1.0.15 82 2/1/2024
1.0.13 74 2/1/2024
1.0.12 86 1/30/2024
1.0.11 164 6/20/2023
1.0.10 7,451 6/23/2022
1.0.9 15,262 11/11/2019
1.0.7 1,151 10/3/2019