Skip to content

Commit a04bf37

Browse files
authored
Fix another event hub instance
1 parent 4188cfc commit a04bf37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

includes/functions-bindings-event-hubs-trigger.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
author: craigshoemaker
2+
author: ggailey777
33
ms.service: azure-functions
44
ms.topic: include
55
ms.date: 11/15/2021
6-
ms.author: cshoe
6+
ms.author: glenga
77
---
88

99
Use the function trigger to respond to an event sent to an event hub event stream. You must have read access to the underlying event hub to set up the trigger. When the function is triggered, the message passed to the function is typed as a string.
@@ -284,7 +284,7 @@ public void eventHubProcessor(
284284
}
285285
```
286286

287-
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `EventHubTrigger` annotation on parameters whose value would come from Event Hub. Parameters with these annotations cause the function to run when an event arrives. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
287+
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `EventHubTrigger` annotation on parameters whose value comes from the event hub. Parameters with these annotations cause the function to run when an event arrives. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
288288

289289
::: zone-end
290290
::: zone pivot="programming-language-csharp"
@@ -452,7 +452,7 @@ The Event Hubs trigger provides several [metadata properties](../articles/azure-
452452
|--------|----|-----------|
453453
|`PartitionContext`|[PartitionContext](/dotnet/api/microsoft.servicebus.messaging.partitioncontext)|The `PartitionContext` instance.|
454454
|`EnqueuedTimeUtc`|`DateTime`|The enqueued time in UTC.|
455-
|`Offset`|`string`|The offset of the data relative to the Event Hub partition stream. The offset is a marker or identifier for an event within the Event Hubs stream. The identifier is unique within a partition of the Event Hubs stream.|
455+
|`Offset`|`string`|The offset of the data relative to the event hub partition stream. The offset is a marker or identifier for an event within the Event Hubs stream. The identifier is unique within a partition of the Event Hubs stream.|
456456
|`PartitionKey`|`string`|The partition to which event data should be sent.|
457457
|`Properties`|`IDictionary<String,Object>`|The user properties of the event data.|
458458
|`SequenceNumber`|`Int64`|The logical sequence number of the event.|

0 commit comments

Comments
 (0)