Messaging.RabbitMq.Core
1.1.1
dotnet add package Messaging.RabbitMq.Core --version 1.1.1
NuGet\Install-Package Messaging.RabbitMq.Core -Version 1.1.1
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="Messaging.RabbitMq.Core" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Messaging.RabbitMq.Core" Version="1.1.1" />
<PackageReference Include="Messaging.RabbitMq.Core" />
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 Messaging.RabbitMq.Core --version 1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Messaging.RabbitMq.Core, 1.1.1"
#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 Messaging.RabbitMq.Core@1.1.1
#: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=Messaging.RabbitMq.Core&version=1.1.1
#tool nuget:?package=Messaging.RabbitMq.Core&version=1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Messaging.RabbitMq
Shared RabbitMQ configuration and publisher utilities for all services. REQUIRED for publishing notification events.
Installation
dotnet add package Messaging.RabbitMq
Configuration
Add to your appsettings.json:
{
"RabbitMq": {
"Host": "localhost",
"Port": 5672,
"VirtualHost": "/",
"Username": "guest",
"Password": "guest"
}
}
Usage
Register in Program.cs
using Messaging.RabbitMq.Extensions;
var builder = WebApplication.CreateBuilder(args);
// Add RabbitMQ messaging (required for all services that publish notifications)
builder.Services.AddRabbitMqMessaging(builder.Configuration);
// For services that also consume events (e.g., NotificationService):
builder.Services.AddRabbitMqMessaging(builder.Configuration, x =>
{
x.AddConsumer<NotificationEventConsumer>();
});
Custom Resilience Options
Override the default resilience settings per service:
using Messaging.RabbitMq.Configuration;
builder.Services.AddRabbitMqMessaging(builder.Configuration,
configureConsumers: x => { x.AddConsumer<MyConsumer>(); },
resilienceOptions: new ResilienceOptions
{
RetryIntervals = [TimeSpan.FromSeconds(2), TimeSpan.FromSeconds(10)],
CircuitBreakerTripThreshold = 3,
CircuitBreakerActiveDuration = TimeSpan.FromSeconds(30),
});
Publish Events
Inject INotificationEventPublisher and publish events:
using Messaging.RabbitMq.Publishers;
using NotificationService.Contracts.Events;
public class QuestionnaireService
{
private readonly INotificationEventPublisher _notificationPublisher;
public QuestionnaireService(INotificationEventPublisher notificationPublisher)
{
_notificationPublisher = notificationPublisher;
}
public async Task SubmitQuestionnaireAsync(QuestionnaireSubmission submission)
{
// ... save submission ...
// Publish notification event
await _notificationPublisher.PublishAsync(new QuestionnaireSubmittedEvent
{
TenantId = submission.TenantId,
UserId = templateOwnerId,
QuestionnaireId = submission.Id,
TemplateId = submission.TemplateId,
TemplateName = template.Name,
RespondentName = submission.RespondentName
});
}
}
Graceful Degradation (Fire-and-Forget)
Use TryPublishAsync when notifications are non-critical and the primary operation
must succeed even if RabbitMQ is down:
public async Task UpdateMenuAsync(Menu menu)
{
// Primary operation: save menu (must succeed)
await _repository.UpdateAsync(menu);
// Non-critical: send notification (must NOT fail the menu update)
await _notificationPublisher.TryPublishAsync(new MenuUpdatedEvent
{
TenantId = menu.TenantId,
UserId = menu.UserId,
MenuId = menu.Id,
MenuName = menu.Name,
UpdatedByUserName = currentUser.Name
});
// Returns false if publish failed -- error is logged, no exception thrown
}
Batch Publishing
For multiple notifications:
var events = users.Select(u => new TemplateUpdatedEvent
{
TenantId = tenantId,
UserId = u.Id,
TemplateId = template.Id,
TemplateName = template.Name,
UpdatedByUserName = currentUser.Name
});
await _notificationPublisher.PublishBatchAsync(events);
// Or with graceful degradation:
int successCount = await _notificationPublisher.TryPublishBatchAsync(events);
Resilience Features
- Automatic Retry: Messages are retried with exponential backoff (1s, 5s, 15s, 30s)
- Circuit Breaker: Trips after 5 failures in 30s, resets after 60s. Prevents cascading failures by pausing message consumption while the system recovers.
- In-Memory Outbox: Ensures messages published during consumer execution are only sent after the consumer completes successfully.
- Error Queues: MassTransit automatically creates
_errorand_skippedqueues for each consumer endpoint. Messages that fail all retries are moved to_error(dead-letter). - Graceful Degradation:
TryPublishAsync/TryPublishBatchAsyncswallow exceptions for fire-and-forget scenarios. - Health Check Degradation: RabbitMQ health reports
Degraded(notUnhealthy) so publisher-only services keep serving HTTP requests. - Structured Logging: All publish operations are logged with correlation IDs
Default Resilience Settings
| Setting | Default | Description |
|---|---|---|
| Retry intervals | 1s, 5s, 15s, 30s | Exponential backoff |
| Circuit breaker enabled | true | Trips on repeated failures |
| Trip threshold | 5 failures | In tracking period |
| Tracking period | 30 seconds | Failure counting window |
| Reset interval | 60 seconds | Time before circuit resets |
| In-memory outbox | true | Transactional publish |
Dependencies
MassTransit.RabbitMQ- Message broker abstractionNotificationService.Contracts- Event contracts
License
MIT
| Product | Versions 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.
-
net10.0
- MassTransit.RabbitMQ (>= 8.5.10)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.9)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.9)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.9)
- NotificationService.Contracts (>= 1.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.