Vulthil.Messaging.Inbox.Cosmos
1.2.0
dotnet add package Vulthil.Messaging.Inbox.Cosmos --version 1.2.0
NuGet\Install-Package Vulthil.Messaging.Inbox.Cosmos -Version 1.2.0
<PackageReference Include="Vulthil.Messaging.Inbox.Cosmos" Version="1.2.0" />
<PackageVersion Include="Vulthil.Messaging.Inbox.Cosmos" Version="1.2.0" />
<PackageReference Include="Vulthil.Messaging.Inbox.Cosmos" />
paket add Vulthil.Messaging.Inbox.Cosmos --version 1.2.0
#r "nuget: Vulthil.Messaging.Inbox.Cosmos, 1.2.0"
#:package Vulthil.Messaging.Inbox.Cosmos@1.2.0
#addin nuget:?package=Vulthil.Messaging.Inbox.Cosmos&version=1.2.0
#tool nuget:?package=Vulthil.Messaging.Inbox.Cosmos&version=1.2.0
Vulthil.Messaging.Inbox.Cosmos
Azure Cosmos DB idempotency store for Vulthil.Messaging.Inbox.
Cosmos has no cross-partition transaction, so — unlike the relational store — it cannot commit the consumer's writes and the idempotency marker atomically. This store therefore provides effectively-once processing: best-effort deduplication of redeliveries layered over idempotent-by-design consumer writes. Use deterministic document ids / upserts in your consumers so the rare interleaving the marker can't guard is harmless.
Usage
Expose the inbox set on your Cosmos DbContext and apply the mapping:
public sealed class AppDbContext(DbContextOptions<AppDbContext> options) : DbContext(options), ISaveInboxMessages
{
public DbSet<InboxMessage> InboxMessages => Set<InboxMessage>();
protected override void OnModelCreating(ModelBuilder modelBuilder)
=> modelBuilder.ApplyCosmosInbox();
}
builder.Services.AddCosmosInbox<AppDbContext>();
builder.AddMessaging(messaging =>
{
messaging.UseRabbitMq(/* ... */);
messaging.ConfigureQueue("orders", q => q.AddConsumer<OrderPlacedConsumer>());
messaging.AddIdempotentInbox<OrderPlaced>();
});
The marker is a self-contained document keyed and partitioned by MessageId (its own container), so duplicate
inserts conflict and are treated as already-processed. See the Inbox Pattern article on the
documentation site for the guarantees and how this differs
from the relational store.
| 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. |
-
net10.0
- Microsoft.EntityFrameworkCore.Cosmos (>= 10.0.10)
- Vulthil.Messaging.Inbox (>= 1.2.0)
- Vulthil.Messaging.Inbox.EntityFrameworkCore (>= 1.2.0)
-
net9.0
- Microsoft.EntityFrameworkCore.Cosmos (>= 9.0.18)
- Vulthil.Messaging.Inbox (>= 1.2.0)
- Vulthil.Messaging.Inbox.EntityFrameworkCore (>= 1.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.