-
Notifications
You must be signed in to change notification settings - Fork 2.2k
README for samples in Event Hubs #6710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
36 changes: 36 additions & 0 deletions
36
sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/src/samples/README.md
This file contains hidden or 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,36 @@ | ||
| # Azure Event Hubs Checkpoint Store client library for Java - Samples | ||
|
|
||
| Azure Event Hubs Checkpoint Store samples are a set of self-contained Java programs that demonstrate interacting | ||
| with Azure Event Hubs Checkpoint Store using the client library. | ||
|
|
||
| ## Key concepts | ||
| Key concepts are explained in detail [here][sdk_readme_key_concepts]. | ||
|
|
||
| ## Getting started | ||
| Please refer to the [Getting Started][sdk_readme_getting_started] section. | ||
|
|
||
| ## Examples | ||
|
|
||
| - [Create an instance of Storage Container client][sample_container_client] | ||
| - [Consume events from all Event Hub partitions][sample_event_processor] | ||
|
|
||
| ## Troubleshooting | ||
| See [Troubleshooting][sdk_readme_troubleshooting]. | ||
|
|
||
| ## Next steps | ||
| See [Next steps][sdk_readme_next_steps]. | ||
|
|
||
| ## Contributing | ||
|
|
||
| If you would like to become an active contributor to this project please refer to our [Contribution | ||
| Guidelines](../../CONTRIBUTING.md) for more information. | ||
|
|
||
| <!-- Links --> | ||
| [sdk_readme_key_concepts]: ../../README.md#key-concepts | ||
| [sdk_readme_getting_started]: ../../README.md#getting-started | ||
| [sdk_readme_troubleshooting]: ../../README.md#troubleshooting | ||
| [sdk_readme_next_steps]: ../../README.md#next-steps | ||
| [sample_container_client]: ./java/com/azure/messaging/eventhubs/checkpointstore/blob/BlobCheckpointStoreSample.java | ||
| [sample_event_processor]: ./java/com/azure/messaging/eventhubs/checkpointstore/blob/EventProcessorBlobCheckpointStoreSample.java | ||
|
|
||
|  | ||
This file contains hidden or 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
50 changes: 50 additions & 0 deletions
50
sdk/eventhubs/azure-messaging-eventhubs/src/samples/README.md
This file contains hidden or 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,50 @@ | ||
| # Azure Event Hubs client library for Java - Samples | ||
|
|
||
| Azure Event Hubs samples are a set of self-contained Java programs that demonstrate interacting with Azure Event Hubs | ||
| using the client library. Each sample focuses on a specific scenario and can be executed independently. | ||
|
|
||
| ## Key concepts | ||
| Key concepts are explained in detail [here][sdk_readme_key_concepts]. | ||
|
|
||
| ## Getting started | ||
| Please refer to the [Getting Started][sdk_readme_getting_started] section. | ||
|
|
||
| ## Examples | ||
|
|
||
| - [Inspect Event Hub and partition properties][sample_get_event_hubs_metadata] | ||
| - [Publish events using Microsoft identity platform][sample_publish_identity] | ||
| - [Publish events to a specific Event Hub partition with partition identifier][sample_publish_partitionId] | ||
| - [Publish events to a specific Event Hub partition with partition key][sample_publish_partitionKey] | ||
| - [Publish events to an Event Hub with a size-limited batch][sample_publish_size_limited] | ||
| - [Publish events with custom metadata][sample_publish_custom_metadata] | ||
| - [Consume events from an Event Hub partition][sample_consume_event] | ||
| - [Consume events starting from an event sequence number][sample_consume_sequence_number] | ||
| - [Consume events from all partitions using EventProcessorClient][sample_event_processor] | ||
|
|
||
| ## Troubleshooting | ||
| See [Troubleshooting][sdk_readme_troubleshooting]. | ||
|
|
||
| ## Next steps | ||
| See [Next steps][sdk_readme_next_steps]. | ||
|
|
||
| ## Contributing | ||
|
|
||
| If you would like to become an active contributor to this project please refer to our [Contribution | ||
| Guidelines](../../CONTRIBUTING.md) for more information. | ||
|
|
||
| <!-- Links --> | ||
| [sdk_readme_key_concepts]: ../../README.md#key-concepts | ||
| [sdk_readme_getting_started]: ../../README.md#getting-started | ||
| [sdk_readme_troubleshooting]: ../../README.md#troubleshooting | ||
| [sdk_readme_next_steps]: ../../README.md#next-steps | ||
| [sample_consume_event]: ./java/com/azure/messaging/eventhubs/ConsumeEvents.java | ||
| [sample_consume_sequence_number]: ./java/com/azure/messaging/eventhubs/ConsumeEventsFromKnownSequenceNumberPosition.java | ||
| [sample_event_processor]: ./java/com/azure/messaging/eventhubs/EventProcessorSample.java | ||
| [sample_get_event_hubs_metadata]: ./java/com/azure/messaging/eventhubs/GetEventHubMetadata.java | ||
| [sample_publish_custom_metadata]: ./java/com/azure/messaging/eventhubs/PublishEventsWithCustomMetadata.java | ||
| [sample_publish_identity]: ./java/com/azure/messaging/eventhubs/PublishEventsWithAzureIdentity.java | ||
| [sample_publish_partitionId]: ./java/com/azure/messaging/eventhubs/PublishEventsToSpecificPartition.java | ||
| [sample_publish_partitionKey]: ./java/com/azure/messaging/eventhubs/PublishEventsWithPartitionKey.java | ||
| [sample_publish_size_limited]: ./java/com/azure/messaging/eventhubs/PublishEventsWithSizeLimitedBatches.java | ||
|
|
||
|  |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need one of those
![impressions]here too?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Added.