NQueue 1.1.3-alpha01

This is a prerelease version of NQueue.
There is a newer version of this package available.
See the version list below for details.
dotnet add package NQueue --version 1.1.3-alpha01
                    
NuGet\Install-Package NQueue -Version 1.1.3-alpha01
                    
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="NQueue" Version="1.1.3-alpha01" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NQueue" Version="1.1.3-alpha01" />
                    
Directory.Packages.props
<PackageReference Include="NQueue" />
                    
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 NQueue --version 1.1.3-alpha01
                    
#r "nuget: NQueue, 1.1.3-alpha01"
                    
#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 NQueue@1.1.3-alpha01
                    
#: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=NQueue&version=1.1.3-alpha01&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=NQueue&version=1.1.3-alpha01&prerelease
                    
Install as a Cake Tool

Implementation of the outbox pattern in dotnet.

Use SQL Server

  services.AddNQueueHostedService((s, config) =>
    {
      config.CreateDbConnection = () =>
      {
          var cnnBuilder = new SqlConnectionStringBuilder
          {
              DataSource = "localhost,15533",
              InitialCatalog = "NQueueSample",
              UserID = "NQueueUser",
              Password = "ihSH3jqeVb7giIgOkohX"
          };
          cnnBuilder.Encrypt = !cnnBuilder.DataSource.StartsWith("localhost");
          return new ValueTask<DbConnection>(new SqlConnection(cnnBuilder.ToString()));
      };   
      return default;
    });

Use Postgres

  services.AddNQueueHostedService((s, config) =>
    {
      var cnnBuilder = new NpgsqlConnectionStringBuilder()
      {
          Host = "localhost",
          Database = "NQueueSample",
          Username = "nqueueuser",
          Password = "ihSH3jqeVb7giIgOkohX",
      };
      cnnBuilder.SslMode = cnnBuilder.Host == "localhost" ? SslMode.Disable : SslMode.VerifyFull;
      config.CreateDbConnection = () => new ValueTask<DbConnection>(new NpgsqlConnection(cnnBuilder.ToString()));
      return default;
    });
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on NQueue:

Package Downloads
NQueue.Extensions.OpenTelemetry

Sets up Open Telemetry tracing for NQueue

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.19.0 535 6/9/2025
1.19.0-beta01 261 6/9/2025
1.18.0 1,063 3/6/2025
1.18.0-beta02 253 3/5/2025
1.18.0-beta01 205 3/4/2025
1.17.0 1,454 1/24/2025
1.16.1 402 12/19/2024
1.16.1-beta01 102 12/19/2024
1.16.0 135 12/17/2024
1.16.0-beta01 103 12/17/2024
1.15.0 385 12/4/2024
1.15.0-beta03 99 12/2/2024
1.15.0-beta02 92 12/2/2024
1.15.0-beta01 90 12/2/2024
1.14.1 119 11/16/2024
1.14.1-beta01 184 11/14/2024
1.14.0 120 11/14/2024
1.14.0-beta3 273 10/25/2024
1.14.0-beta2 277 10/9/2024
1.14.0-beta1 100 10/9/2024
1.13.0 1,292 7/31/2024
1.13.0-beta01 120 7/29/2024
1.12.0 117 7/26/2024
1.12.0-beta06 696 7/24/2024
1.12.0-beta05 118 7/24/2024
1.12.0-beta04 91 7/24/2024
1.12.0-beta03 113 7/23/2024
1.12.0-beta02 111 7/23/2024
1.12.0-beta01 102 7/23/2024
1.11.0 143 6/13/2024
1.11.0-beta03 423 6/11/2024
1.11.0-beta02 105 6/11/2024
1.11.0-beta01 86 6/11/2024
1.10.0 121 6/11/2024
1.10.0-beta1 402 5/31/2024
1.9.0 637 4/18/2024
1.8.0 926 2/18/2024
1.8.0-beta02 137 2/18/2024
1.8.0-beta01 130 2/17/2024
1.7.0 151 2/17/2024
1.7.0-beta01 137 2/11/2024
1.6.2 162 2/6/2024
1.6.2-beta01 120 2/6/2024
1.6.1-beta03 190 1/31/2024
1.6.1-beta02 106 1/31/2024
1.6.1-beta01 113 1/31/2024
1.6.0 552 1/29/2024
1.6.0-beta02 141 1/26/2024
1.6.0-beta01 126 1/24/2024
1.5.0 450 1/18/2024
1.5.0-beta01 100 1/18/2024
1.4.0 149 1/17/2024
1.4.0-beta02 120 1/17/2024
1.4.0-beta01 99 1/17/2024
1.3.1 179 1/16/2024
1.3.0 173 1/13/2024
1.3.0-beta04 130 1/13/2024
1.3.0-beta03 107 1/13/2024
1.3.0-beta02 107 1/13/2024
1.3.0-beta01 134 1/4/2024
1.2.1 513 12/31/2023
1.2.1-beta1 151 12/29/2023
1.2.0 472 12/11/2023
1.2.0-beta006 154 12/9/2023
1.2.0-beta005 120 12/9/2023
1.2.0-beta004 106 12/9/2023
1.2.0-beta003 107 12/9/2023
1.2.0-beta002 123 12/9/2023
1.2.0-beta001 122 12/9/2023
1.1.5-beta002 234 12/3/2023
1.1.5-beta001 115 12/2/2023
1.1.4 246 12/1/2023
1.1.4-beta001 172 11/30/2023
1.1.3 353 11/16/2023
1.1.3-alpha01 116 11/15/2023
1.1.2 141 11/14/2023
1.1.2-alpha01 107 11/13/2023
1.1.1 199 11/11/2023
1.1.0 142 11/11/2023
1.0.0 173 11/9/2023
0.0.1-alpha-019 189 11/7/2023
0.0.1-alpha-018 117 11/7/2023
0.0.1-alpha-017 108 11/7/2023
0.0.1-alpha-016 132 11/7/2023
0.0.1-alpha-015 121 11/6/2023
0.0.1-alpha-014 106 11/6/2023
0.0.1-alpha-013 127 11/5/2023
0.0.1-alpha-011 117 11/5/2023
0.0.1-alpha-010 313 10/28/2023
0.0.1-alpha-008 141 10/27/2023
0.0.1-alpha-007 128 10/26/2023
0.0.1-alpha-006 129 10/26/2023
0.0.1-alpha-005 130 10/26/2023
0.0.1-alpha-004 121 10/26/2023
0.0.1-alpha-003 144 10/25/2023
0.0.1-alpha-002 127 10/25/2023
0.0.1-alpha-001 166 10/22/2023