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

EventHubTrigger 接口

public interface EventHubTrigger

EventHubTrigger (name = “event”, eventHubName = “samples-workitems”, connection = “AzureEventHubConnection”) String message, final ExecutionContext context ) { context.getLogger () .info (“事件中心消息接收: ” + message) ; }

方法摘要

修饰符和类型 方法和描述
Cardinality cardinality()

触发器输入的基数。 如果输入是单个消息,请选择“One”;如果输入是消息数组,则选择“多”。 如果未指定,则默认值为“多”

String connection()

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

String consumerGroup()

定义要绑定到的事件中心使用者组。

String dataType()

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

    <li>
    
      <p>"": get the value as a string, and try to deserialize to actual parameter type like POJO </p>
    
    </li>
    
    <li>
    
      <p>string: always get the value as a string </p>
    
    </li>
    
    <li>
    
      <p>binary: get the value as a binary data, and try to deserialize to actual parameter type byte[] </p>
    
    </li>
    

String eventHubName()

定义要绑定到的事件中心的名称。

String name()

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

方法详细信息

cardinality

public Cardinality cardinality() default Cardinality.MANY

触发器输入的基数。 如果输入是单个消息,请选择“One”;如果输入是消息数组,则选择“多”。 如果未指定,则默认值为“多”

Returns:

一个 Cardinality 表示基数的值

connection

public String connection()

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

Returns:

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

consumerGroup

public String consumerGroup() default "$Default"

定义要绑定到的事件中心使用者组。

Returns:

事件中心使用者组字符串。

dataType

public String dataType() default ""

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

    <li>
    
      <p>"": get the value as a string, and try to deserialize to actual parameter type like POJO </p>
    
    </li>
    
    <li>
    
      <p>string: always get the value as a string </p>
    
    </li>
    
    <li>
    
      <p>binary: get the value as a binary data, and try to deserialize to actual parameter type byte[] </p>
    
    </li>
    

Returns:

将由 Functions 运行时使用的 dataType。

eventHubName

public String eventHubName()

定义要绑定到的事件中心的名称。

Returns:

事件中心名称字符串。

name

public String name()

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

Returns:

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

适用于