你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

QueueOutput 接口

public interface QueueOutput

HttpOutput (name = “response”) 最终 OutputBinding<String> result ) { result.setValue (message + “已添加。) ;返回消息;}

方法摘要

修饰符和类型 方法和描述
String connection()

定义包含 Azure 存储连接字符串的应用设置名称。

String dataType()

定义 Functions 运行时应如何处理参数值。 可能的值为:

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

String name()

function.json 中使用的变量名称。

String queueName()

定义要写入的存储队列的名称。

方法详细信息

connection

public String connection() default ""

定义包含 Azure 存储连接字符串的应用设置名称。

Returns:

连接字符串的应用设置名称。

dataType

public String dataType() default ""

定义 Functions 运行时应如何处理参数值。 可能的值为:

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

Returns:

将由 Functions 运行时使用的 dataType。

name

public String name()

function.json 中使用的变量名称。

Returns:

function.json 中使用的变量名称。

queueName

public String queueName()

定义要写入的存储队列的名称。

Returns:

队列名称字符串。

适用于