Kck.EventBus.InMemory
3.4.0
dotnet add package Kck.EventBus.InMemory --version 3.4.0
NuGet\Install-Package Kck.EventBus.InMemory -Version 3.4.0
<PackageReference Include="Kck.EventBus.InMemory" Version="3.4.0" />
<PackageVersion Include="Kck.EventBus.InMemory" Version="3.4.0" />
<PackageReference Include="Kck.EventBus.InMemory" />
paket add Kck.EventBus.InMemory --version 3.4.0
#r "nuget: Kck.EventBus.InMemory, 3.4.0"
#:package Kck.EventBus.InMemory@3.4.0
#addin nuget:?package=Kck.EventBus.InMemory&version=3.4.0
#tool nuget:?package=Kck.EventBus.InMemory&version=3.4.0
Kck.EventBus.InMemory
In-process IEventBus implementation for single-node applications, integration tests, and local development.
Installation
dotnet add package Kck.EventBus.InMemory
Quick Start
// Program.cs
builder.Services.AddKckEventBus(eb => eb.UseInMemory());
// Subscribe to an event
builder.Services.AddKckEventHandler<OrderPlacedEvent, OrderPlacedHandler>();
// Publish an event
public class OrderService(IEventBus bus)
{
public async Task PlaceOrderAsync(Order order, CancellationToken ct)
{
await _db.SaveChangesAsync(ct);
await bus.PublishAsync(new OrderPlacedEvent(order.Id), ct);
}
}
Configuration
| Property | Description | Default |
|---|---|---|
ThrowOnHandlerError |
Re-throw exceptions from event handlers | false |
MaxConcurrentHandlers |
Maximum parallel handler invocations | Environment.ProcessorCount |
Resources
| 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. |
-
net10.0
- Kck.EventBus.Abstractions (>= 3.4.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Kck.EventBus.InMemory:
| Package | Downloads |
|---|---|
|
Kck.Bundle.WebApi
Opinionated ASP.NET Core WebAPI starter pack. Registers Serilog, in-memory caching, JWT auth, Argon2 hashing, InMemory event bus, OpenTelemetry, rate limiting, security headers, CORS, and global exception handling in a single AddKckWebApiDefaults() call. |
|
|
Kck.Bundle.WorkerService
Opinionated .NET Worker Service starter pack. Registers Serilog, OpenTelemetry, InMemory event bus, and a mutually-exclusive background job scheduler (Hangfire or Quartz) in a single call. |
GitHub repositories
This package is not used by any popular GitHub repositories.