All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.functions.annotation.ServiceBusQueueOutput Maven / Gradle / Ivy

Go to download

This package contains all Java interfaces and annotations to interact with Microsoft Azure functions runtime.

There is a newer version: 3.1.0
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */

package com.microsoft.azure.functions.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 

Place this on a parameter whose value would be written to a service bus queue. * The parameter type should be OutputBinding<T>, where T could be one of:

* *
    *
  • Any native Java types such as int, String, byte[]
  • *
  • Any POJO type
  • *
* *

The following example shows a Java function that sends a Service Bus queue message:

* *
{@literal @}FunctionName("httpToServiceBusQueue")
 *{@literal @}ServiceBusQueueOutput(name = "message", queueName = "myqueue", connection = "AzureServiceBusConnection")
 * public String pushToQueue(
 *    {@literal @}HttpTrigger(name = "request", methods = {HttpMethod.POST}, authLevel = AuthorizationLevel.ANONYMOUS)
 *     final String message,
 *    {@literal @}HttpOutput(name = "response") final OutputBinding<String> result
 * ) {
 *     result.setValue(message + " has been sent.");
 *     return message;
 * }
* * @since 1.0.0 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PARAMETER, ElementType.METHOD}) public @interface ServiceBusQueueOutput { /** * The variable name used in function.json. * @return The variable name used in function.json. */ String name(); /** *

Defines how Functions runtime should treat the parameter value. Possible values are:

*
    *
  • "" or string: treat it as a string whose value is serialized from the parameter
  • *
  • binary: treat it as a binary data whose value comes from for example OutputBinding<byte[]>
  • *
* @return The dataType which will be used by the Functions runtime. */ String dataType() default ""; /** * Defines the name of the Service Bus queue to which to write. * @return The Service Bus queue name string. */ String queueName(); /** * Defines the app setting name that contains the Service Bus connection string. * @return The app setting name of the connection string. */ String connection(); /** * Defines the permission of the Service Bus queue to which to write. * @return The Service Bus queue permission. */ AccessRights access() default AccessRights.MANAGE; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy