CodeChavez.EventBus.EventHub
10.0.0-preview6
This is a prerelease version of CodeChavez.EventBus.EventHub.
dotnet add package CodeChavez.EventBus.EventHub --version 10.0.0-preview6
NuGet\Install-Package CodeChavez.EventBus.EventHub -Version 10.0.0-preview6
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="CodeChavez.EventBus.EventHub" Version="10.0.0-preview6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeChavez.EventBus.EventHub" Version="10.0.0-preview6" />
<PackageReference Include="CodeChavez.EventBus.EventHub" />
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 CodeChavez.EventBus.EventHub --version 10.0.0-preview6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CodeChavez.EventBus.EventHub, 10.0.0-preview6"
#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 CodeChavez.EventBus.EventHub@10.0.0-preview6
#: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=CodeChavez.EventBus.EventHub&version=10.0.0-preview6&prerelease
#tool nuget:?package=CodeChavez.EventBus.EventHub&version=10.0.0-preview6&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CodeChavez.EventBus.Abstractions
A comprehensive abstraction layer for event bus implementations, providing core interfaces and models for building scalable event-driven architectures in .NET 10.
Features
- Producer/Consumer Abstractions: Core interfaces for publishing and consuming events
- Configuration Options: Flexible interfaces for configuring consumer and producer behavior
- Event Models: Base classes for domain events and integration events
- MediatR Integration: Support for MediatR notifications and handlers
- Cross-Platform Support: Built for modern .NET
Core Components
Interfaces
IConsumerProducerOptions
Configuration interface for consumer and producer settings.
public interface IConsumerProducerOptions
{
List<string> Servers { get; set; }
string Group { get; set; }
string Client { get; set; }
}
IConsumerMultiplexOptions
Specialized configuration for multiplexed consumer scenarios.
Installation
dotnet add package CodeChavez.EventBus.Abstractions
Configuration
Configure consumer and producer options by implementing IConsumerProducerOptions:
public class EventBusOptions : IConsumerProducerOptions
{
public List<string> Servers { get; set; } = new() { "localhost:9092" };
public string Group { get; set; } = "my-consumer-group";
public string Client { get; set; } = "my-client";
}
Target Framework
- .NET 10 and higher
License
This project is part of the CodeChavez community projects.
Repository
| 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
- Azure.Messaging.EventHubs (>= 5.12.2)
- Azure.Messaging.EventHubs.Processor (>= 5.12.2)
- CodeChavez.EventBus.Abstractions (>= 10.0.0-preview6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.0-preview6 | 62 | 6/5/2026 |
| 10.0.0-preview5 | 42 | 6/5/2026 |