Yautbox 1.0.1

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

Yautbox

Yautbox is a lightweight .NET outbox library. It lets you enqueue messages during application work and processes them later with background handlers. The core package is storage-agnostic; choose an infrastructure provider (InMemory, MSSQL, Postgres) 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 (if published):

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 OrderPlaced("A-123"));
await outbox.HandleAsync(new OrderPlaced("B-456"), scheduledAt: DateTimeOffset.UtcNow.AddMinutes(5));

Cancel by id if needed:

await outbox.CancelAsync<OrderPlaced>(messageId);

Configuration options

Each handler can be configured via AddOutboxHandler().ConfigureOptions<TOptions>(). The default options type is DefaultRunnerOptions.

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:

  • Identifier (default: type name without version info)
  • PollDelay (default: 5s)
  • BufferSize (default: 1000)
  • PerBufferCount (default: 1000)
  • HandleTimeout (default: 30m)
  • IsEnabled (default: true)
  • WorkersCount (default: 1)
  • DeletePolicy (default: Safe)
  • FailureDelay (default: 2s)
  • Visibility (default: 10m)
  • BackupInterval (default: null, disabled)
  • ExecutionPolicy (default: Parallel)
  • CancellationPolicy (default: Safe)

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 lock to ensure a single worker across processes.

Extensibility

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

Target frameworks

net8.0, net9.0, net10.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 is compatible.  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 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.

NuGet packages (3)

Showing the top 3 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.Mssql

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

Yautbox.Postgres

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 45 2/14/2026
1.0.0 32 2/14/2026