Shuttle.Esb.Msmq 13.2.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Shuttle.Esb.Msmq --version 13.2.1
NuGet\Install-Package Shuttle.Esb.Msmq -Version 13.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="Shuttle.Esb.Msmq" Version="13.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Shuttle.Esb.Msmq --version 13.2.1
#r "nuget: Shuttle.Esb.Msmq, 13.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.
// Install Shuttle.Esb.Msmq as a Cake Addin
#addin nuget:?package=Shuttle.Esb.Msmq&version=13.2.1

// Install Shuttle.Esb.Msmq as a Cake Tool
#tool nuget:?package=Shuttle.Esb.Msmq&version=13.2.1

MSMQ

PM> Install-Package Shuttle.Esb.Msmq

All MSMQ queues are required to be transactional. In addition to the actual queue a msmq://configuration-name/queue-name$journal queue will always be used. If it does not exist it will be created, so if you are creating queues explicitly then remember to create these also.

MSMQ creates outgoing queues internally so it is not necessary to use an outbox.

MSMQ Installation / Activation

You need to install / activate MSMQ on your system before using this queuing option.

Configuration

The URI structure is msmq://configuration-name/queue-name.

services.AddMsmq(builder =>
{
    builder.AddOptions("local", new MsmqOptions
    {
        Path = ".\private$", // for local queues
        Path = "FormatName:DIRECT=TCP:127.0.0.1\private$", // for IP addresses
        Path = "FormatName:DIRECT=OS:{host-name}\private$",
        Timeout = Timespan.Zero,
        UseDeadLetterQueue = false
    });
});

The default JSON settings structure is as follows:

{
  "Shuttle": {
    "Msmq": {
      "Timeout": "00:00:02",
      "UseDeadLetterQueue": false,
      "Path": "some-path" 
    }
  }
}

Options

Option Default Description
Path The MessageQueue.Path to use to connect to the queue.
UseDeadLetterQueue true Specifies the value to pass to the 'UseDeadLetterQueue' property of the message sent.
Timeout 00:00:00 Timespan indicating how long to wait for queue operations to complete.
Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.2.1 844 12/1/2022
13.2.0 923 9/16/2022
13.1.0 943 9/11/2022
13.0.0 915 9/4/2022
12.0.1 1,016 4/9/2022
12.0.0 948 3/21/2022
11.0.1 1,065 1/20/2021
11.0.0 1,616 6/21/2019
10.0.5 1,463 10/6/2018
10.0.4 1,350 9/22/2018
10.0.3 1,657 7/4/2018
10.0.2 1,624 2/13/2018
9.0.0 1,572 8/6/2017
8.0.0 1,612 3/24/2017
6.0.2 2,298 6/4/2016
6.0.1 1,921 4/24/2016
6.0.0 1,761 4/24/2016
3.8.6 1,575 4/3/2016
3.8.5 1,581 3/22/2016