DotNetWorkQueue 0.9.31

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

DotNetWorkQueue

Producer/distributed consumer library for .NET. Queue and dequeue POCOs, LINQ expressions (compiled or dynamic), and schedule recurring jobs.

Features

  • Producer/consumer and producer/method consumer patterns
  • LINQ expression queuing (compiled and dynamic)
  • Recurring job scheduling via Schyntax expressions
  • Delayed processing, prioritized queues, message expiration
  • Configurable retry policies with Polly
  • OpenTelemetry distributed tracing
  • Thread-safe with graceful shutdown support
  • Targets .NET 10.0, .NET 8.0, .NET Framework 4.8, .NET Standard 2.0

Installation

dotnet add package DotNetWorkQueue

Quick Start

// Producer
using var queueContainer = new QueueContainer<SqlServerMessageQueueInit>();
using var producer = queueContainer.CreateProducer<MyMessage>(
    new QueueConnection("queueName", "connectionString"));
producer.Send(new MyMessage { Text = "Hello" });

// Consumer
using var consumer = queueContainer.CreateConsumer(
    new QueueConnection("queueName", "connectionString"));
consumer.Start<MyMessage>(HandleMessage);

Complete examples are available in the samples repository.

Documentation

License

LGPL-2.1-or-later

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 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 (14)

Showing the top 5 NuGet packages that depend on DotNetWorkQueue:

Package Downloads
DotNetWorkQueue.Transport.Shared

Shared libaries for transports

DotNetWorkQueue.Transport.RelationalDatabase

Shared libaries for relational transports

DotNetWorkQueue.Transport.PostgreSQL

PostgreSQL transport for https://github.com/blehnen/DotNetWorkQueue

DotNetWorkQueue.Transport.Redis

Redis transport for https://github.com/blehnen/DotNetWorkQueue

DotNetWorkQueue.AppMetrics

An implementation of AppMetrics ( https://github.com/AppMetrics/AppMetrics) for https://github.com/blehnen/DotNetWorkQueue

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.9.31 47 4/9/2026
0.9.30 47 4/8/2026
0.9.18 423 4/6/2026
0.9.14 538 4/3/2026
0.9.13 425 3/30/2026
0.9.12 412 3/29/2026
0.9.11 417 3/26/2026
0.9.10 430 3/20/2026
0.9.9 427 3/20/2026
0.9.8 109 3/17/2026
0.9.7 98 3/17/2026
0.9.6 520 3/17/2026
0.9.5 505 3/16/2026
0.9.1 515 3/10/2026
0.9.0 470 3/4/2026
0.8.1 433 2/23/2026
0.8.0 525 1/6/2026
0.7.6 2,197 2/2/2024
0.7.5 809 1/9/2024
0.7.4 679 1/9/2024
Loading failed