Yautbox 1.2.1

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

Yautbox

Yautbox is a lightweight .NET outbox library. It lets you enqueue messages during application work and process them later with background handlers. The core package is storage-agnostic; choose the in-memory or PostgreSQL provider, or implement your own.

Features

  • Outbox pattern with background processing
  • Typed handlers with retry support
  • Scheduled messages and visibility timeouts
  • Configurable concurrency, polling, and cleanup
  • Pluggable storage via IOutboxProvider

Installation

NuGet:

dotnet add package Yautbox

From source:

dotnet add <your-app>.csproj reference src/Yautbox/Yautbox.csproj

Quick start

  1. Register the outbox and a provider.
using Microsoft.Extensions.DependencyInjection;
using Yautbox.Extensions.Ioc;
using Yautbox.InMemory.Extensions; // from Yautbox.InMemory package

services.AddOutbox(builder => builder.UseInMemory());
  1. Register a handler for a payload type.
using Yautbox.Extensions.Ioc;
using Yautbox.Handlers;

services.AddOutboxHandler<OrderPlaced, OrderPlacedHandler>();

public sealed class OrderPlacedHandler : IOutboxHandler<OrderPlaced>
{
    public Task HandleAsync(IEnumerable<OutboxMessage<OrderPlaced>> messages, CancellationToken ct)
    {
        foreach (var message in messages)
        {
            // process message.Payload
            // message.Retry(TimeSpan.FromMinutes(1)); // optional retry
        }

        return Task.CompletedTask;
    }
}
  1. Enqueue messages from your app code.
using Yautbox.Services;

await outbox.HandleAsync(new[] { new OrderPlaced("A-123") });
await outbox.HandleAsync(
    new[] { new OrderPlaced("B-456") },
    scheduledAt: DateTimeOffset.UtcNow.AddMinutes(5));

Cancel by id if needed:

using Yautbox.Extensions.Outbox;

await outbox.CancelAsync<OrderPlaced>(messageId);

Configuration options

Each handler can be configured via AddOutboxHandler().ConfigureOptions<TOptions>(). Implement IOutboxRunnerOptions for full control or ISimpleRunnerOptions when only BufferSize must be supplied.

using Microsoft.Extensions.Options;
using Yautbox.Extensions.Ioc;
using Yautbox.Runner.Options;

services
    .AddOutboxHandler<OrderPlaced, OrderPlacedHandler>()
    .ConfigureOptions<DefaultRunnerOptions>(options =>
        options.Configure(o =>
        {
            o.BufferSize = 500;
            o.WorkersCount = 2;
            o.ExecutionPolicy = ExecutionPolicy.Parallel;
            o.BackupInterval = TimeSpan.FromHours(24);
        }));

IOutboxRunnerOptions settings and defaults:

  • Identifier (default: payload type assembly-qualified name without version, culture, or public key token)
  • PollDelay (default: 5s + jitter)
  • BufferSize (default: 1000)
  • PerBufferCount (default: BufferSize)
  • HandleTimeout (default: 55m)
  • IsEnabled (default: true)
  • WorkersCount (default: 1)
  • DeletePolicy (default: Safe)
  • FailureDelay (default: 2s + jitter)
  • Visibility (default: 1h)
  • BackupInterval (default: null, disabled)
  • CleanupInterval (default: 1d)
  • ExecutionPolicy (default: Parallel)
  • CancellationPolicy (default: Safe)
  • PolicyTimeout (default: 55m)
  • ScopeLifetime (default: PerBatch)

How it works

  • IOutboxService enqueues messages into an IOutboxProvider.
  • AddOutboxHandler<TPayload, THandler>() registers two hosted services:
    • a handler runner that polls, locks, and dispatches messages
    • a cleanup runner that deletes old handled records when BackupInterval is set
  • ExecutionPolicy.Sequential uses a provider-level policy scope to ensure single active processing for the same identifier when the provider supports distributed locking.

Extensibility

To create a custom storage implementation, implement IOutboxProvider and register it via AddOutbox(builder => builder.SetProvider<...>()).

Metrics

Yautbox reports lifecycle metrics through IMetricsHandler. The default handler is a no-op. Register a custom handler via the infrastructure builder:

using Yautbox.Extensions.Ioc;
using Yautbox.Metrics;

services.AddOutbox(builder =>
{
    builder.UseInMemory();
    builder.SetMetrics<MyMetricsHandler>();
});

public sealed class MyMetricsHandler : IMetricsHandler
{
    public ValueTask AddedAsync(string identifier, int count, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask CanceledAsync(string identifier, int count, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask HandledAsync(string identifier, int count, TimeSpan elapsed, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask RetriedAsync(string identifier, int count, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask DeletedAsync(string identifier, int count, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask CleanedInAsync(string identifier, TimeSpan elapsed, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask ReadInAsync(string identifier, TimeSpan elapsed, CancellationToken ct) => ValueTask.CompletedTask;
    public ValueTask ErrorsAsync(string identifier, int count, CancellationToken ct) => ValueTask.CompletedTask;
}

Target frameworks

net8.0

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 was computed.  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 (4)

Showing the top 4 NuGet packages that depend on Yautbox:

Package Downloads
Yautbox.InMemory

In-memory Yautbox provider using a bounded in-process queue. Ideal for tests and local development where durability is not required.

Yautbox.Postgres

PostgreSQL provider for Yautbox with schema migrations and advisory locks for sequential execution.

Yautbox.Mssql

SQL Server provider for Yautbox with schema migrations and distributed locks for sequential execution.

Yautbox.Mysql

MySQL provider for Yautbox with schema migrations and distributed locks for sequential execution.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.1 121 5/22/2026
1.1.1 176 3/1/2026
1.1.0 173 2/23/2026
1.0.1 176 2/14/2026
1.0.0 156 2/14/2026