Perago.SharedKernel.RabbitMQ 1.0.98

dotnet add package Perago.SharedKernel.RabbitMQ --version 1.0.98
                    
NuGet\Install-Package Perago.SharedKernel.RabbitMQ -Version 1.0.98
                    
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="Perago.SharedKernel.RabbitMQ" Version="1.0.98" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Perago.SharedKernel.RabbitMQ" Version="1.0.98" />
                    
Directory.Packages.props
<PackageReference Include="Perago.SharedKernel.RabbitMQ" />
                    
Project file
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 Perago.SharedKernel.RabbitMQ --version 1.0.98
                    
#r "nuget: Perago.SharedKernel.RabbitMQ, 1.0.98"
                    
#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 Perago.SharedKernel.RabbitMQ@1.0.98
                    
#: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=Perago.SharedKernel.RabbitMQ&version=1.0.98
                    
Install as a Cake Addin
#tool nuget:?package=Perago.SharedKernel.RabbitMQ&version=1.0.98
                    
Install as a Cake Tool

Perago.SharedKernel.RabbitMQ

Low-level RabbitMQ queue and request/reply helpers for .NET applications.

For new service-to-service integration events, prefer Perago.SharedKernel.EventBus with Perago.SharedKernel.EventBusRabbitMQ. Use this package when you need the legacy queue API or RPC-style request/reply behavior.

Installation

dotnet add package Perago.SharedKernel.RabbitMQ

Getting Started

RabbitMQBus implements IEventBus and needs an IServiceScopeFactory plus a RabbitMQ IConnectionFactory:

IEventBus bus = new RabbitMQBus(serviceScopeFactory, connectionFactory);

bus.Publish(new OrderQueuedEvent());
bus.Subscribe<OrderQueuedEvent, OrderQueuedHandler>();

var reply = await bus.Request(new PriceQuoteRpcEvent());
bus.Reply<PriceQuoteRpcEvent, PriceQuoteHandler>();

Events inherit Perago.SharedKernel.RabbitMQ.Events.Event. RPC messages inherit RpcEvent. Publish and Subscribe on this low-level bus are obsolete for new integration events.

Host, port, credentials, and vhost can be bound from RabbitMQConfiguration.

Dependencies

  • Microsoft.Extensions.DependencyInjection.Abstractions (10.0.12)
  • Microsoft.Extensions.Logging.Abstractions (10.0.12)
  • Newtonsoft.Json (13.0.4)
  • RabbitMQ.Client (6.8.1)

Target Frameworks

  • net10.0

License

MIT

Product Compatible and additional computed target framework versions.
.NET 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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Perago.SharedKernel.RabbitMQ:

Package Downloads
Perago.SharedKernel.Abstraction.Application

Common Behaviors for the Application layer.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.98 47 9/19/2026
1.0.97 47 9/19/2026
1.0.96 121 9/16/2026
1.0.95 122 9/11/2026
1.0.94 110 9/11/2026
1.0.93 117 9/11/2026
1.0.92 138 9/5/2026
1.0.91 117 8/31/2026
1.0.90 118 8/30/2026
1.0.89 135 8/29/2026
1.0.88 159 8/19/2026
1.0.87 139 8/18/2026
1.0.86 145 8/17/2026
1.0.85 140 8/11/2026
1.0.84 125 8/9/2026
1.0.83 147 8/8/2026
1.0.82 193 7/23/2026
1.0.81 159 7/23/2026
1.0.80 150 7/23/2026
1.0.79 151 7/23/2026
Loading failed