Semantic mediators
Separate command, query, and event contracts with focused handler pipelines.
Compose commands, queries, events, inbox, and outbox processing from explicit contracts and opt-in adapters. Install only the capabilities your service runs.
dotnet add package LiteBus
services.AddLiteBus(bus =>
{
bus.AddMediator();
});Separate command, query, and event contracts with focused handler pipelines.
Use inbox, outbox, scheduling, retries, leases, and sagas as independent concerns.
Add only the broker, storage, host, and observability adapters your process needs.