Azure.Messaging.EventHubs
5.1.0
See the version list below for details.
dotnet add package Azure.Messaging.EventHubs --version 5.1.0
NuGet\Install-Package Azure.Messaging.EventHubs -Version 5.1.0
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.1.0" />
paket add Azure.Messaging.EventHubs --version 5.1.0
#r "nuget: Azure.Messaging.EventHubs, 5.1.0"
// Install Azure.Messaging.EventHubs as a Cake Addin #addin nuget:?package=Azure.Messaging.EventHubs&version=5.1.0 // Install Azure.Messaging.EventHubs as a Cake Tool #tool nuget:?package=Azure.Messaging.EventHubs&version=5.1.0
Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This client library allows for both publishing and consuming events using Azure Event Hubs. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Azure.Core (>= 1.2.1)
- Microsoft.Azure.Amqp (>= 2.4.2 && < 3.0.0)
- Microsoft.Bcl.AsyncInterfaces (>= 1.0.0)
- System.Diagnostics.DiagnosticSource (>= 4.6.0)
- System.Reflection.TypeExtensions (>= 4.5.1 && < 4.9.0)
- System.Runtime.Serialization.Primitives (>= 4.3.0)
- System.Threading.Channels (>= 4.6.0)
- System.Threading.Tasks.Extensions (>= 4.5.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (23)
Showing the top 5 popular GitHub repositories that depend on Azure.Messaging.EventHubs:
Repository | Stars |
---|---|
dotnet/orleans
Cloud Native application framework for .NET
|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
dotnet/samples
Sample code referenced by the .NET documentation
|
Version | Downloads | Last updated |
---|---|---|
5.6.2 | 67 | 9/19/2022 |
5.3.0 | 0 | 3/8/2021 |
5.3.0-beta.4 | 0 | 3/8/2021 |
5.3.0-beta.3 | 0 | 3/8/2021 |
5.3.0-beta.2 | 0 | 3/8/2021 |
5.3.0-beta.1 | 0 | 3/8/2021 |
5.2.0 | 0 | 3/8/2021 |
5.2.0-preview.3 | 0 | 3/8/2021 |
5.2.0-preview.2 | 0 | 3/8/2021 |
5.2.0-preview.1 | 0 | 3/8/2021 |
5.1.0 | 32,955 | 3/8/2021 |
5.1.0-preview.1 | 0 | 3/8/2021 |
5.0.1 | 0 | 3/8/2021 |
5.0.0 | 0 | 3/8/2021 |
5.0.0-preview.6 | 0 | 3/8/2021 |
5.0.0-preview.5 | 0 | 3/8/2021 |
5.0.0-preview.4 | 0 | 3/8/2021 |
5.0.0-preview.3 | 0 | 3/8/2021 |
5.0.0-preview.2 | 0 | 3/8/2021 |
5.0.0-preview.1 | 0 | 3/8/2021 |
### Acknowledgments
Thank you to our developer community members who helped to make the Event Hubs client libraries better with their contributions to this release:
- Alberto De Natale _([GitHub](https://github.com/albertodenatale))_
- Daniel Marbach _([GitHub]((https://github.com/danielmarbach)))_
### Changes
#### General availability of preview features
- The set of features from v5.1.0-preview.1 are now generally available. This includes the `EventProcessor<TPartition>` and `PartitionReceiver` types which focus on advanced application scenarios which require greater low-level control.
#### Publishing events
- A set of events may now be published without an explicit batch; a batched approach will be used when communicating with the Event Hubs service, with an implicit batch created on the sender's behalf.
#### Bug fixes and foundation
- The transport producers used for sending events to a specific partition are now managed by a pool with sliding expiration to enable more efficient resource use and cleanup. _(A community contribution, courtesy of ([albertodenatale](https://github.com/albertodenatale))_
- Timing operations have been refactored to make use of a more efficient approach with fewer allocations. (A community contribution, courtesy of _([danielmarbach](https://github.com/albertodenatale))_
- Fixed a bug with EventDataBatch; it is now thread-safe.
- Minor enhancements to reduce allocations and improve efficiency
https://github.com/Azure/azure-sdk-for-net/blob/bc2425c420a85044edf056eda62e85c4bfd4fbcf/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md