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

com.microsoft.azure.functions.dapr.annotation.DaprStateOutput Maven / Gradle / Ivy

Go to download

This package contains all Java annotations to interact with Microsoft Azure Functions runtime for Dapr bindings and triggers.

The 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.dapr.annotation;

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

import com.microsoft.azure.functions.annotation.CustomBinding;

/**
 * Attribute to specify parameters for the dapr-state output binding.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.PARAMETER, ElementType.METHOD })
@CustomBinding(direction = "out", name = "daprStateOutputMessage", type = "daprState")
public @interface DaprStateOutput {
    /**
     * Dapr runtime endpoint.
     */
    String daprAddress() default "";

    /**
     * Name of the state store to retrieve or store state.
     */
    String stateStore() default "";

    /**
     * Key name to get or set state.
     */
    String key() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy