FastCSharp.RabbitPublisher 0.0.0-alpha

This is a prerelease version of FastCSharp.RabbitPublisher.
There is a newer version of this package available.
See the version list below for details.
dotnet add package FastCSharp.RabbitPublisher --version 0.0.0-alpha
NuGet\Install-Package FastCSharp.RabbitPublisher -Version 0.0.0-alpha
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="FastCSharp.RabbitPublisher" Version="0.0.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FastCSharp.RabbitPublisher --version 0.0.0-alpha
#r "nuget: FastCSharp.RabbitPublisher, 0.0.0-alpha"
#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 FastCSharp.RabbitPublisher as a Cake Addin
#addin nuget:?package=FastCSharp.RabbitPublisher&version=0.0.0-alpha&prerelease

// Install FastCSharp.RabbitPublisher as a Cake Tool
#tool nuget:?package=FastCSharp.RabbitPublisher&version=0.0.0-alpha&prerelease

FastCSharp's RabbitMQ Publisher

RabbitPublisher provides a simple approach for publishing messages to a RabbitMQ exchange.
It is a wrapper around the RabbitMQ.Client library.

Usage

var exchange = new RabbitDirectExchangeFactory(configuration, loggerFactory);
using var publisher = exchange.NewPublisher<string>("PUBLISH.SDK.DIRECT", "TASK_QUEUE");
await publisher.Publish("Hello World!");

appsettings.json config file sample

{
    "RabbitPublisherConfig" : 
    {
        "HostName"  : "localhost",
        "Port"      : 5672,
        "UserName"  : "guest",
        "Password"  : "guest",
        "Timeout"   : "00:00:05",
        "Exchanges" : 
        {
            "PUBLISH.SDK.DIRECT" : 
            {
                "Name" : "test.direct.exchange",
                "Type" : "Direct",
                "NamedRoutingKeys": 
                {
                    "TASK_QUEUE" : "test.direct.q" 
                }
            },
            "PUBLISH.SDK.FANOUT" : 
            {
                "Name" : "test.fanout.exchange",
                "Type" : "Fanout"
            },
            "PUBLISH.SDK.TOPIC" : 
            {
                "Name" : "test.topic.exchange",
                "Type" : "Topic",
                "RoutingKeys" : [".mail.", ".sms.", ".letter"]
            }
        }
     }
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
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.5.0 302 1/5/2024
1.4.0 131 12/17/2023
1.0.1 132 11/28/2023
1.0.0 136 10/20/2023
0.4.3-alpha 82 9/25/2023
0.4.2-alpha 93 9/23/2023
0.4.1-alpha 76 9/23/2023
0.3.1-alpha 89 9/22/2023
0.0.1-alpha 89 9/18/2023
0.0.0-alpha 109 4/9/2023