Partilhar via


EventGridTrigger Interface

public interface EventGridTrigger

EventGridTrigger(name = "event") Conteúdo da cadeia de caracteres, contexto final ExecutionContext ) { context.getLogger().info(content); }

Resumo do método

Modificador e tipo Método e descrição
String dataType()

Define como o tempo de execução do Functions deve tratar o valor do parâmetro. Os valores possíveis são:

    <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 name()

O nome da variável usado em function.json.

Detalhes do método

dataType

public String dataType() default ""

Define como o tempo de execução do Functions deve tratar o valor do parâmetro. Os valores possíveis são:

    <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:

O dataType que será usado pelo runtime do Functions.

name

public String name()

O nome da variável usado em function.json.

Returns:

O nome da variável usado em function.json.

Aplica-se a