Euonia.Bus 10.4.2

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

Overview

Euonia.Bus is a .NET library designed to facilitate message-based communication within applications. It provides a robust and flexible framework for implementing messaging patterns, enabling developers to build scalable and maintainable systems.

Features

  • Modular Architecture: Easily extend and customize the messaging infrastructure.
  • Transport Agnostic: Supports various transport mechanisms (e.g., RabbitMQ, In-Memory) for message delivery.
  • Message Routing: Advanced routing capabilities to direct messages to the appropriate handlers.
  • Error Handling: Built-in error handling and retry mechanisms for reliable message processing.
  • Open Source: Actively developed and maintained as an open-source project.

Getting Started

To get started with Euonia.Bus, follow these steps:

  1. Install the Package: Add the Euonia.Bus package to your project via NuGet.

    dotnet add package Euonia.Bus
    
  2. Register Services: In your application's, register the necessary services for the message bus.

     services.AddEuoniaBus(config =>
     {
         // Configure the message conventions to determine the message types
     	config.SetConventions(builder =>
     	{
     		builder.Add<DefaultMessageConvention>();
     		builder.Add<AttributeMessageConvention>();
     		builder.Add<DomainMessageConvention>();
     	});
     	config.SetStrategy(typeof(InMemoryTransport), builder =>
     	{
     		builder.Add<LocalMessageTransportStrategy>();
     		//builder.Add(new AttributeTransportStrategy([typeof(InMemoryTransport)]));
     		builder.EvaluateIncoming(_ => true);
     		builder.EvaluateOutgoing(_ => true);
     	});
         // Configure identity provider
     	config.SetIdentityProvider(jwt => JwtIdentityAccessor.Resolve(jwt, configuration));
     	config.RegisterHandlers([assemblies]);
     });
    
  3. Configure the Bus: In your application's configuration file (e.g., appsettings.json), add the necessary settings for the message bus.

  4. Add Module Dependency: Add the required transport module dependency in your service module.

  5. Implement Message Handlers: Create message handler classes to process incoming messages.

  6. Run Your Application: Start your application, and it will now use Euonia.Bus for message-based communication.

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 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 Euonia.Bus:

Package Downloads
Euonia.Application

Euonia development framework and toolkit library for .NET application/service. Powered by Nerosoft.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.4.2 104 2/24/2026
10.4.1 119 2/12/2026
10.4.0 115 2/4/2026
10.3.0 124 1/16/2026
10.2.10 120 1/14/2026
10.2.9 116 1/14/2026
10.2.8 122 1/14/2026
10.2.7 125 1/10/2026
10.2.6 130 1/8/2026
10.2.5 124 1/7/2026
10.2.4 124 1/7/2026
10.2.3 123 1/7/2026
10.2.2 125 1/6/2026
10.2.1 118 1/6/2026
10.2.0 127 1/4/2026
10.1.11 319 12/19/2025
10.1.10 294 12/18/2025
10.1.6 299 12/17/2025
10.1.5 306 12/17/2025
10.1.0 297 12/17/2025
Loading failed