Obvs.AzureServiceBus
0.6.2-beta
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
<PackageReference Include="Obvs.AzureServiceBus" Version="0.6.2-beta" />
paket add Obvs.AzureServiceBus --version 0.6.2-beta
#r "nuget: Obvs.AzureServiceBus, 0.6.2-beta"
// 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 | Versions 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. |
-
- Obvs (>= 2.2.0.42)
- Rx-Main (>= 2.2.5)
- WindowsAzure.ServiceBus (>= 3.1.2)
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,234 | 9/6/2016 |
0.15.1-beta2 | 761 | 8/9/2016 |
0.15.0-beta2 | 1,533 | 8/1/2016 |
0.14.0-beta2 | 1,086 | 7/11/2016 |
0.13.0-beta | 792 | 7/9/2016 |
0.12.0-beta | 785 | 6/20/2016 |
0.11.0-beta | 809 | 6/1/2016 |
0.10.0-beta | 763 | 6/1/2016 |
0.9.0-beta | 1,594 | 2/23/2016 |
0.8.0-beta | 805 | 2/3/2016 |
0.6.2-beta | 1,106 | 1/27/2016 |
0.6.1-beta | 1,216 | 10/9/2015 |
0.6.0-beta | 1,466 | 10/9/2015 |
0.5.0-beta | 882 | 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