Skip to content

Commit f28cbe4

Browse files
authored
[Event Hubs] Fix Broken Link (Azure#19262)
The focus of these changes is to fix a broken link in one of the samples.
1 parent 658b03f commit f28cbe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/eventhub/Azure.Messaging.EventHubs.Processor/samples/Sample04_ProcessingEvents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ In order to ensure efficient communication with the Event Hubs service and the b
386386

387387
This approach is optimized for scenarios where the processing of events can be performed quickly and without heavy resource costs. For scenarios where that is not the case, it may be advantageous to collect the events into batches and send them to be processed outside of the context of the "ProcessEvent" handler. In this example, the `processEventHandler` will group events into batches of 50 by partition, sending them to the application to process when the batch size was reached.
388388

389-
One important thing to note is that batching with the `EventProcessorClient` may boost throughput, but more demanding applications may need more control and less ceremony to meet their higher throughput or specialized needs - that's where the [EventProcessor&lt;TPartition&gt;](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample02_EventHubsClients.md) from the [Azure.Messaging.EventHubs](https://www.nuget.org/packages/Azure.Messaging.EventHubs) package is intended to help. More on the design and philosophy behind the `EventProcessor<TPartition>` can be found in its [design document](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Azure.Messaging.EventHubs/design/event-processor%7BT%7D-proposal.md).
389+
One important thing to note is that batching with the `EventProcessorClient` may boost throughput, but more demanding applications may need more control and less ceremony to meet their higher throughput or specialized needs - that's where the [EventProcessor&lt;TPartition&gt;](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample02_EventHubsClients.md) from the [Azure.Messaging.EventHubs](https://www.nuget.org/packages/Azure.Messaging.EventHubs) package is intended to help. More on the design and philosophy behind the `EventProcessor<TPartition>` can be found in its [design document](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/eventhub/Azure.Messaging.EventHubs/design/proposal-event-processor%7BT%7D.md).
390390

391391
```C# Snippet:EventHubs_Processor_Sample04_ProcessByBatch
392392
var storageConnectionString = "<< CONNECTION STRING FOR THE STORAGE ACCOUNT >>";

0 commit comments

Comments
 (0)