Three21.EventBus 3.0.117.10

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

Introduction

This is a slightly modified version of the Event Bus building block found in the eShopOnContainers Reference Application.

Getting Started

  1. Add a reference to the Three21.EventBus.RabbitMQ nuget package.
  2. Create Events and Event Handlers.
  3. Register the IEventBus service and subscribe to the applicable events.

Creating Events

Create a record that inherits from IntegrationEvent.

public record MyEvent : IntegrationEvent
{
    //TODO Add appropriate event properties...
}

Creating Event Handlers

Create a class that implements IIntegrationEventHandler<SomeIntegrationEvent>.

public class MyEventHandler : IIntegrationEventHandler<MyEvent>
{
    public Task Handle(MyEvent @event)
    {
        //TODO Process MyEvent...
    }
}

Registering the IEventBusService and Subscribing to Events

private void ConfigureRabbitMQ(IServiceCollection services)
{
    var options = new RabbitMQEventBusOptions()
    {
        ExchangeName = "my-exchange",
        ExchangeType = "topic",
        QueueName = "my-queue",
        HostName = "localhost",
        UserName = "my-username",
        Password = "my-password",
        RetryCount = 5
    };

    services.AddTransient<MyEventHandler>();

    services.AddRabbitMQ(options, eventBus =>
    {
        eventBus.Subscribe<MyEvent, MyEventHandler>();
    });
}
Product 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 was computed.  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.
  • net9.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Three21.EventBus:

Package Downloads
Three21.EventBus.RabbitMQ

A slightly modified version of the RabbitMQ Event Bus building block found in the eShopOnContainers Reference Application. (https://github.com/dotnet-architecture/eShopOnContainers)

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.117.10 65 9/7/2025
3.0.116.10 224 8/6/2025
3.0.115.10 150 7/26/2025
3.0.114.11 167 7/9/2025
3.0.113.10 160 7/9/2025
3.0.112.10 171 6/18/2025
3.0.111.10 257 5/14/2025
3.0.110.12 177 4/11/2025
3.0.107.10 125 3/22/2025
3.0.106.10 196 3/12/2025
3.0.105.10 146 3/1/2025
3.0.104.10 136 2/24/2025
3.0.103.10 148 2/15/2025
3.0.102.10 146 1/15/2025
3.0.101.10 153 12/11/2024
3.0.100.10 156 11/16/2024
2.0.141.10 157 10/11/2024
2.0.140.10 155 9/27/2024
2.0.139.10 193 8/16/2024
2.0.138.10 156 7/13/2024
2.0.137.10 173 6/28/2024
2.0.136.10 177 6/15/2024
2.0.135.10 170 6/1/2024
2.0.134.10 178 5/17/2024
2.0.133.10 194 4/12/2024
2.0.132.10 210 3/8/2024
2.0.131.10 175 2/24/2024
2.0.130.10 168 2/15/2024
2.0.129.10 191 1/13/2024
2.0.128.10 190 12/19/2023
2.0.127.10 206 12/9/2023
2.0.126.10 191 12/1/2023
2.0.125.12 162 11/16/2023
2.0.122.10 198 10/28/2023
2.0.121.11 190 10/14/2023
2.0.120.10 182 10/14/2023
2.0.119.10 187 9/30/2023
2.0.118.10 159 9/16/2023
2.0.117.10 216 8/12/2023
2.0.116.10 236 7/15/2023
2.0.115.10 237 6/29/2023
2.0.114.10 240 6/20/2023
2.0.113.10 247 5/19/2023
2.0.112.10 275 4/21/2023
2.0.111.10 285 4/12/2023
2.0.110.10 315 3/31/2023
2.0.109.10 324 3/15/2023
2.0.108.10 354 2/25/2023
2.0.107.10 348 2/21/2023
2.0.106.10 415 1/11/2023
2.0.105.10 454 12/3/2022
2.0.104.11 458 11/13/2022
2.0.103.10 439 11/13/2022
2.0.102.11 453 10/23/2022
2.0.101.10 497 10/23/2022
2.0.100.10 476 10/14/2022
1.0.130.10 662 6/16/2022
1.0.129.10 631 5/14/2022
1.0.128.10 694 3/25/2022
1.0.127.11 617 3/21/2022
1.0.126.10 639 3/21/2022
1.0.125.11 651 3/20/2022
1.0.124.10 632 3/20/2022
1.0.123.11 642 3/19/2022
1.0.122.10 623 3/19/2022
1.0.121.11 643 3/5/2022
1.0.120.10 642 3/5/2022
1.0.119.13 652 2/26/2022
1.0.115.10 666 2/16/2022