Euonia.Bus.RabbitMq
2026.3.14
dotnet add package Euonia.Bus.RabbitMq --version 2026.3.14
NuGet\Install-Package Euonia.Bus.RabbitMq -Version 2026.3.14
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="Euonia.Bus.RabbitMq" Version="2026.3.14" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Euonia.Bus.RabbitMq" Version="2026.3.14" />
<PackageReference Include="Euonia.Bus.RabbitMq" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Euonia.Bus.RabbitMq --version 2026.3.14
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Euonia.Bus.RabbitMq, 2026.3.14"
#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.
#:package Euonia.Bus.RabbitMq@2026.3.14
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Euonia.Bus.RabbitMq&version=2026.3.14
#tool nuget:?package=Euonia.Bus.RabbitMq&version=2026.3.14
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RabbitMQ Transport
This project provides a RabbitMQ transport implementation for the Euonia.Bus library.
It enables seamless integration with RabbitMQ message broker, allowing you to send and receive messages using RabbitMQ as the underlying transport mechanism.
Features
- Easy Integration: Quickly set up RabbitMQ transport in your Euonia.Bus applications.
- Reliable Messaging: Leverage RabbitMQ's robust messaging capabilities for reliable message delivery.
- Asynchronous Communication: Support for asynchronous message processing to improve application responsiveness.
- Configurable: Flexible configuration options to tailor the transport to your application's needs.
- Cross-Platform: Compatible with multiple .NET versions, ensuring broad usability.
- Open Source: Built on top of open-source libraries, promoting transparency and community contributions.
Getting Started
To get started with the RabbitMQ transport in Euonia.Bus, follow these steps:
- Install the Package: Add the Euonia.Bus.RabbitMq package to your project via NuGet.
dotnet add package Euonia.Bus.RabbitMq - Configure the Transport: In your application's configuration file (e.g., appsettings.json), add the RabbitMQ transport settings under the
EuoniaBussection:
{
"EuoniaBus": {
"RabbitMq": {
"Enabled": true,
"Name": "RabbitMq",
"Connection": "amqp://user:password@host:port",
"ExchangeNamePrefix": "$nerosoft.euonia.exchange",
"QueueNamePrefix": "$nerosoft.euonia.queue",
"RoutingKey": "*",
"Persistent": true,
"AutoAck": true,
"Mandatory": true,
"MaxFailureRetries": 3,
"SubscriptionId": "my-subscription"
}
}
}
- Add Module Dependency: Add the RabbitMQ transport module dependency in your service module:
[DependsOn(typeof(RabbitMqBusModule))]
public class YourServiceModule : ModuleContextBase
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
// Configure your services here
}
}
- Add Incoming/Outgoing Strategy: Implement the necessary message handling strategies for incoming and outgoing messages.
services.AddEuoniaBus(config =>
{
config.SetStrategy("RabbitMq", builder =>
{
builder.Add(new AttributeTransportStrategy(["RabbitMq"]));
builder.Add<DistributedMessageTransportStrategy>();
builder.EvaluateOutgoing(e => true);
builder.EvaluateIncoming(e => true);
});
});
- Run Your Application: Start your application, and it will now use RabbitMQ as the transport for Euonia.Bus.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Euonia.Bus.Abstract (>= 2026.3.14)
- Euonia.Core (>= 2026.3.14)
- Euonia.Modularity (>= 2026.3.14)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.11)
- Microsoft.Extensions.Options (>= 10.0.11)
- Newtonsoft.Json (>= 13.0.4)
- Polly (>= 8.7.0)
- RabbitMQ.Client (>= 7.2.2)
-
net9.0
- Euonia.Bus.Abstract (>= 2026.3.14)
- Euonia.Core (>= 2026.3.14)
- Euonia.Modularity (>= 2026.3.14)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.11)
- Microsoft.Extensions.Options (>= 10.0.11)
- Newtonsoft.Json (>= 13.0.4)
- Polly (>= 8.7.0)
- RabbitMQ.Client (>= 7.2.2)
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 |
|---|---|---|
| 2026.3.14 | 0 | 8/30/2026 |
| 2026.3.13 | 42 | 8/29/2026 |
| 2026.3.12 | 45 | 8/28/2026 |
| 2026.3.11 | 43 | 8/27/2026 |
| 2026.3.10 | 79 | 8/26/2026 |
| 2026.3.9 | 74 | 8/25/2026 |
| 2026.3.8 | 89 | 8/24/2026 |
| 2026.3.7 | 87 | 8/20/2026 |
| 2026.3.6 | 84 | 8/20/2026 |
| 2026.3.5 | 89 | 8/19/2026 |
| 2026.3.4 | 99 | 8/14/2026 |
| 2026.3.3 | 101 | 8/11/2026 |
| 2026.3.2 | 90 | 8/10/2026 |
| 2026.3.1 | 85 | 8/10/2026 |
| 10.4.3 | 145 | 4/9/2026 |
| 10.4.2 | 145 | 2/24/2026 |
| 10.4.1 | 141 | 2/12/2026 |
| 10.4.0 | 142 | 2/4/2026 |
| 10.3.0 | 165 | 1/16/2026 |
| 10.2.10 | 161 | 1/14/2026 |
Loading failed