GitHub - mikasjp/BusyBee: Lightweight library for in-memory background processing in .NET applications.
BusyBee
🐝💨 Fast and observable background job processing for .NET
BusyBee is a high-performance .NET background processing library built on native channels. It provides a simple, configurable, and observable solution for handling background tasks with built-in OpenTelemetry support and flexible queue management.
Installation
dotnet add package BusyBee
Quick Start
Register BusyBee in your DI container and start processing background jobs:
// Program.cs
builder.Services.AddBusyBee();
// Inject I...
Read more at github.com