Burrow.NET 1.0.15

There is a newer version of this package available.
See the version list below for details.
dotnet add package Burrow.NET --version 1.0.15
NuGet\Install-Package Burrow.NET -Version 1.0.15
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="Burrow.NET" Version="1.0.15" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Burrow.NET --version 1.0.15
#r "nuget: Burrow.NET, 1.0.15"
#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 Burrow.NET as a Cake Addin
#addin nuget:?package=Burrow.NET&version=1.0.15

// Install Burrow.NET as a Cake Tool
#tool nuget:?package=Burrow.NET&version=1.0.15

Burrow.NET is a simple library created based on some EasyNetQ ideas, it's a thin wrapper of RabbitMQ.Client for .NET. Basically, if you just need to put your message or subscribe messages from RabbitMQ server, you found the right place. With Burrow.NET, you can easily customize almost everything start with exchange and queue name, changing the way to serialize your object, inject custom error handling strategies, etc.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Burrow.NET:

Package Downloads
Burrow.Extras

Burrow.Extras provide DependencyInjection TunnelFactory, JsonSerializer and RabbitSetup which help to create Exchanges and Queues programmatically. YOU DON'T NEED TO DOWNLOAD BURROW.RPC IF YOU DON'T USE RPC IN YOUR CODE.

Burrow.RPC

Burrow.RPC helps implement RPC-style service using RabbitMQ and Burrow.NET. This package is optional. YOU DON'T NEED TO DOWNLOAD BURROW.RPC IF YOU DON'T USE RPC IN YOUR CODE.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.32 2,966 4/5/2016
1.0.31 2,016 11/3/2015
1.0.30 2,048 3/27/2015
1.0.29 3,253 11/1/2014
1.0.28 2,177 7/12/2014
1.0.27 1,795 6/19/2014
1.0.26 1,329 6/16/2014
1.0.25 1,332 5/28/2014
1.0.24 4,674 2/2/2014
1.0.23 1,674 1/23/2014
1.0.22 3,483 10/8/2013
1.0.21 1,762 9/29/2013
1.0.20 1,831 8/7/2013
1.0.19 1,804 7/19/2013
1.0.17 2,691 5/17/2013
1.0.16 2,430 10/1/2012
1.0.15 1,911 9/28/2012
1.0.14 1,579 8/20/2012
1.0.13 2,022 7/6/2012
1.0.12 1,729 6/29/2012
1.0.9 1,522 6/5/2012
1.0.8 1,505 5/29/2012
1.0.5 1,519 4/30/2012
1.0.4 3,087 3/30/2012
1.0.2 1,759 3/16/2012
1.0.1 1,527 3/12/2012

- Fix method SetSerializer on RabbitTunnel to make serializer change to all dependencies
- Implement Burrow.RPC
- Fix a bug that execute the subscriptions twice when the connection to server has been establised before when a new tunnel want to publish a new message. Can reproduce this bug by create a tunnel, publish or subscribe. Create another tunnel on same app domain, subscribe, then publish. The second tunnel will run the subscription again as the dedicated channel is not created.
- Add IsDebugEnable on IRabbitWatcher, sorry for that if you have to change your custom watcher implementation.