-
Notifications
You must be signed in to change notification settings - Fork 579
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pointers to new packages in readme files at the root and for .Net…
… legacy package (#478) * Add pointers to new packages in readme files * re-arrange readme * Update Java readme too
- Loading branch information
1 parent
10df2c2
commit 71ed5ea
Showing
4 changed files
with
44 additions
and
29 deletions.
There are no files selected for viewing
7 changes: 5 additions & 2 deletions
7
samples/DotNet/Microsoft.ServiceBus/RBAC/EventHubsSenderReceiverRbac/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Role based access sample # | ||
# Role based access sample with WindowsAzure.ServiceBus SDK | ||
|
||
For more information on Role based access (RBAC) and how to run this sample follow [this](https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) link. | ||
See [Authorize access to Event Hubs resources using Azure Active Directory](https://docs.microsoft.com/azure/event-hubs/authorize-access-azure-active-directory) for information on Role based access (RBAC). | ||
|
||
**Note**: This sample shows different ways to authenticate using Azure Active Directory with the legacy Event Hubs library `WindowsAzure.ServiceBus`. | ||
For the current version of the library `Azure.Messaging.EventHubs`, please see the [sample that makes use of credentials from Azure.Identity](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample06_IdentityAndSharedAccessCredentials.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
> **Note:** : This folder has samples for the legacy package WindowsAzure.ServiceBus that can be used for Azure Event Hubs. There is a newer package [Azure.Messaging.EventHubs](https://www.nuget.org/packages/Azure.Messaging.EventHubs) available as of February 2020. Please refer to [samples for the Azure.Messaging.EventHubs client library](https://docs.microsoft.com/samples/azure/azure-sdk-for-net/azuremessagingeventhubs-samples/) instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
# Azure Event Hubs samples | ||
|
||
## .NET | ||
**Note:** This repository holds samples for the legacy libraries for Azure Event Hubs for .NET and Java developers. We highly recommend you to upgrade to the newer packages. | ||
|
||
### Microsoft.Azure.EventHubs | ||
Any samples within the `Azure.Microsoft.EventHubs` folder target the newer .NET Standard library. | ||
.NET legacy packages | ||
|
||
#### SampleSender | ||
- Microsoft.Azure.EventHubs (**legacy**) | ||
- Microsoft.Azure.EventHubs.Processor (**legacy**) | ||
- WindowsAzure.ServiceBus (**legacy**) | ||
|
||
[This sample](./DotNet/Microsoft.Azure.EventHubs/SampleSender/readme.md) shows how to write a .NET Core console application that sends a set of messages to an Event Hub. | ||
Java legacy packages | ||
|
||
#### SampleEphReceiver | ||
- com.microsoft.azure:azure-eventhubs (**legacy**) | ||
- com.microsoft.azure:azure-eventhubs-eph (**legacy**) | ||
|
||
[This sample](./DotNet/Microsoft.Azure.EventHubs/SampleEphReceiver/readme.md) shows how to write a .NET Core console application that receives messages from an Event Hub using the **EventProcessorHost**. | ||
Samples for **latest** .NET packages for Azure Event Hubs | ||
|
||
## Java | ||
- [Azure.Messaging.EventHubs](https://docs.microsoft.com/samples/azure/azure-sdk-for-net/azuremessagingeventhubs-samples/) | ||
- [Azure.Messaging.EventHubs.Processor](https://docs.microsoft.com/samples/azure/azure-sdk-for-net/azuremessagingeventhubsprocessor-samples/) | ||
|
||
[Go here](./Java) for the Java language samples. | ||
Samples for **latest** Java packages for Azure Event Hubs | ||
|
||
- [com.azure:azure-messaging-eventhubs](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/azure-messaging-eventhubs/src/samples) | ||
- [com.azure:azure-messaging-eventhubs-checkpointstore-blob](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/src/samples) | ||
|
||
## Miscellaneous | ||
|
||
### Manage Event Hubs resources | ||
|
||
The samples under the folder `Management` in this repository show how to manage your Event Hubs resources via CLI, the .NET package `Microsoft.Azure.Management.EventHub` and PowerShell | ||
|
||
### proton-c-sender-dotnet-framework-receiver | ||
|
||
[This sample](./Miscellaneous/proton-c-sender-dotnet-framework-receiver/README.md) shows how to use Azure Event Hubs with clients that use different protocols. This scenario sends using an Apache Proton C++ client, and receives using the .NET Framework client. | ||
|