Skip to content

Commit 2c16a35

Browse files
committed
art2-2
1 parent 76df5b7 commit 2c16a35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

articles/azure-functions/functions-triggers-bindings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Triggers and Bindings in Azure Functions
33
description: Learn how to use triggers and bindings to connect your Azure function to online events and cloud-based services.
44
ms.topic: concept-article
5-
ms.date: 10/28/2024
5+
ms.date: 10/10/2025
66
ms.custom: devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
77
zone_pivot_groups: programming-languages-set-functions
88
ai-usage: ai-assisted
@@ -68,7 +68,7 @@ Legacy C# script functions use a `function.json` definition file. For more infor
6868
::: zone-end
6969

7070
::: zone pivot="programming-language-java"
71-
For Java functions, you configure triggers and bindings by annotating specific methods and parameters. This HTTP trigger (`@HttpTrigger`) is defined on the `run` method for a function named `HttpExample`. The function writes to a storage queue that the `@QueueOutput` annotation defines on the `message` parameter:
71+
For Java functions, you configure triggers and bindings by annotating specific methods and parameters. This HTTP trigger (`@HttpTrigger`) is defined on the `run` method for a function named `HttpExample`. The function writes to a storage queue named `outqueue` that the `@QueueOutput` annotation defines on the `msg` parameter:
7272

7373
:::code language="java" source="~/functions-quickstart-java/functions-add-output-binding-storage-queue/src/main/java/com/function/Function.java" range="16-23":::
7474

0 commit comments

Comments
 (0)