Obvs.AzureServiceBus 0.6.2-beta

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

// Install Obvs.AzureServiceBus as a Cake Tool
#tool nuget:?package=Obvs.AzureServiceBus&version=0.6.2-beta&prerelease

Microsoft Azure Service Bus transport support for the Obvs Framework.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  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

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
0.15.2-beta2 1,201 9/6/2016
0.15.1-beta2 749 8/9/2016
0.15.0-beta2 1,518 8/1/2016
0.14.0-beta2 1,071 7/11/2016
0.13.0-beta 778 7/9/2016
0.12.0-beta 772 6/20/2016
0.11.0-beta 794 6/1/2016
0.10.0-beta 750 6/1/2016
0.9.0-beta 1,474 2/23/2016
0.8.0-beta 792 2/3/2016
0.6.2-beta 1,091 1/27/2016
0.6.1-beta 1,203 10/9/2015
0.6.0-beta 1,452 10/9/2015
0.5.0-beta 868 9/23/2015

Changes to properly support the configuration of multiple message sources.

* Updated to latest versions of all dependent packages (were a little behind on things).
* Fixing bug in the observable stream that is returned from MessageSource::CreateBrokeredMessageObservableFromMessageReceiver where, if an exception occurred, we were reporting it to the observer via OnError, but we were not terminating processing and would send more data through the observer, but that violates Rx rules that say OnError must terminate the stream.
* Now disposing of received BrokeredMessages. If non-peek-lock they are disposed of immediately after parsing by the MessageSource classes Messages observerable implementation. If peek-lock, they are disposed after a completion action is performed by the PeekLockMessageControl class.
* Fixing bug in MessagePublisher where we were disposing of the MemoryStream that was being used for serialization. This is technically a bug because the BrokeredMessage assumes ownership of this stream and will dispose of it when _it_ is disposed.
 * Stopped passing the namespace manager into AzureServiceBusEndpointProvider because it doesn't use it.
 * Started updating to use C#6 nameof() for parameter validation logic so that we're not using fragile strings and get rename refactoring and compile time validation
 * Started adding some EndpointProviderFacts