@Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface QueueTrigger
Place this on a parameter whose value would come from a storage queue, and causing the method to run when a new item is pushed. The parameter type can be one of the following:
The following example shows a Java function that polls the "myqueue-items" queue and writes a log each time a queue item is processed.
@FunctionName("queueMonitor")
public void logQueueItem(
@QueueTrigger(name = "msg", queueName = "myqueue-items", connection = "AzureWebJobsStorage")
String message,
final ExecutionContext context
) {
context.getLogger().info("Queue message processed: " + message);
}| Modifier and Type | Required Element and Description |
|---|---|
String |
name
The variable name used in function.json.
|
String |
queueName
Defines the name of the storage queue to which to bind.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
connection
Defines the app setting name that contains the Azure Storage connection string.
|
String |
dataType
Defines how Functions runtime should treat the parameter value.
|
public abstract String name
public abstract String queueName
public abstract String dataType
Defines how Functions runtime should treat the parameter value. Possible values are:
public abstract String connection
Copyright © 2022. All rights reserved.