You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-storage-queue-output.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,11 @@ public static class QueueFunctions
55
55
56
56
---
57
57
58
+
For an end-to-end example of how to configure an output binding to Queue storage, see one of these articles:
59
+
60
+
+[Connect functions to Azure Storage using Visual Studio](functions-add-output-binding-storage-queue-vs.md)
61
+
+[Connect functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-csharp)
62
+
+[Connect functions to Azure Storage using command line tools](functions-add-output-binding-storage-queue-cli.md?pivots=programming-language-csharp)
58
63
::: zone-end
59
64
::: zone pivot="programming-language-java"
60
65
@@ -74,6 +79,10 @@ The following example shows a Java function that creates a queue message for whe
74
79
75
80
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `@QueueOutput` annotation on parameters whose value would be written to Queue storage. The parameter type should be `OutputBinding<T>`, where `T` is any native Java type of a POJO.
76
81
82
+
For an end-to-end example of how to configure an output binding to Queue storage, see one of these articles:
83
+
84
+
+[Connect functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-java)
85
+
+[Connect functions to Azure Storage using command line tools](functions-add-output-binding-storage-queue-cli.md?pivots=programming-language-java)
77
86
::: zone-end
78
87
::: zone pivot="programming-language-typescript"
79
88
@@ -106,6 +115,11 @@ To output multiple messages, return an array instead of a single object. For exa
For an end-to-end example of how to configure an output binding to Queue storage, see one of these articles:
119
+
120
+
+[Connect functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-javascript)
121
+
+[Connect functions to Azure Storage using command line tools](functions-add-output-binding-storage-queue-cli.md?pivots=programming-language-javascript)
122
+
109
123
# [Model v3](#tab/nodejs-v3)
110
124
111
125
The following example shows an HTTP trigger binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding. The function creates a queue item for each HTTP request received.
For an end-to-end example of how to configure an output binding to Queue storage, see one of these articles:
249
+
250
+
+[Connect functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-powershell)
251
+
+[Connect functions to Azure Storage using command line tools](functions-add-output-binding-storage-queue-cli.md?pivots=programming-language-powershell)
For an end-to-end example of how to configure an output binding to Queue storage, see one of these articles:
281
+
282
+
+[Connect functions to Azure Storage using Visual Studio Code](functions-add-output-binding-storage-queue-vs-code.md?pivots=programming-language-python)
283
+
+[Connect functions to Azure Storage using command line tools](functions-add-output-binding-storage-queue-cli.md?pivots=programming-language-python)
284
+
261
285
# [v1](#tab/python-v1)
262
286
263
287
A Storage queue binding is defined in *function.json* where *type* is set to `queue`.
0 commit comments