![]() |
VOOZH | about |
dotnet add package Cosmos.EventDriven.CritterStack.AzureServiceBus --version 1.2.3
NuGet\Install-Package Cosmos.EventDriven.CritterStack.AzureServiceBus -Version 1.2.3
<PackageReference Include="Cosmos.EventDriven.CritterStack.AzureServiceBus" Version="1.2.3" />
<PackageVersion Include="Cosmos.EventDriven.CritterStack.AzureServiceBus" Version="1.2.3" />Directory.Packages.props
<PackageReference Include="Cosmos.EventDriven.CritterStack.AzureServiceBus" />Project file
paket add Cosmos.EventDriven.CritterStack.AzureServiceBus --version 1.2.3
#r "nuget: Cosmos.EventDriven.CritterStack.AzureServiceBus, 1.2.3"
#:package Cosmos.EventDriven.CritterStack.AzureServiceBus@1.2.3
#addin nuget:?package=Cosmos.EventDriven.CritterStack.AzureServiceBus&version=1.2.3Install as a Cake Addin
#tool nuget:?package=Cosmos.EventDriven.CritterStack.AzureServiceBus&version=1.2.3Install as a Cake Tool
Integración de Azure Service Bus con Wolverine para implementar Event Driven Architecture (EDA) en .NET 10.
Este paquete provee extensiones sobre WolverineOptions para configurar Azure Service Bus como broker de mensajería en aplicaciones Cosmos EDA, con soporte especial para escenarios serverless mediante publicación inline de IPrivateEvent.
IEvent a un topic de Azure Service Bus de forma inline (con sobrecarga para broker nombrado)IEvent de un assembly a un topic de Azure Service Busdotnet add package Cosmos.EventDriven.CritterStack.AzureServiceBus
builder.Host.UseWolverine(opts =>
{
opts.HabilitarAzureServiceBusParaServerLess(
builder.Configuration.GetConnectionString("AzureServiceBus")!);
// Publicar un evento específico a un topic
opts.PublicarEventoServerless<PedidoCreado>("pedidos");
// Publicar todos los IEvent del assembly a un topic
opts.PublicarEventosServerless("mi-servicio", typeof(Program).Assembly);
});
builder.Host.UseWolverine(opts =>
{
opts.HabilitarAzureServiceBusParaServerLess(
builder.Configuration.GetConnectionString("AzureServiceBus")!);
// Escuchar una subscription de un topic con inbox duradero
opts.SuscribirseAEvento("mi-subscription", "pedidos");
// Sobre un broker nombrado
opts.AgregarAzureServiceBusNombradoServerless("ventas",
builder.Configuration.GetConnectionString("VentasServiceBus")!);
opts.SuscribirseAEvento("ventas", "mi-subscription", "pedidos");
});
using Cosmos.EventDriven.Abstractions;
public record PedidoCreado(
Guid PedidoId,
string ClienteId,
DateTime CreadoEn
) : IPrivateEvent;
appsettings.jsonCopyright © Cosmos. Todos los derechos reservados.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.2.3 | 0 | 6/18/2026 |
| 1.2.2 | 89 | 6/12/2026 |
| 1.2.1 | 87 | 6/12/2026 |
| 1.2.0 | 94 | 6/11/2026 |
| 1.1.0 | 89 | 6/3/2026 |
| 1.0.0 | 98 | 6/2/2026 |
| 0.2.2 | 90 | 6/2/2026 |
| 0.2.1 | 106 | 5/28/2026 |
| 0.2.0 | 96 | 5/28/2026 |
| 0.1.0 | 99 | 5/26/2026 |
| 0.0.7 | 101 | 5/6/2026 |
| 0.0.6 | 648 | 3/18/2026 |
| 0.0.5 | 128 | 3/17/2026 |
| 0.0.4 | 105 | 3/17/2026 |
| 0.0.3 | 242 | 3/12/2026 |
| 0.0.2 | 114 | 3/12/2026 |
| 0.0.1 | 116 | 3/12/2026 |
| 0.0.1-RC.1 | 100 | 3/10/2026 |