TimerTrigger Interface
public interface TimerTrigger
TimerTrigger(name = "keepAliveTrigger", schedule = "0 */5 * * *") String timerInfo, ExecutionContext context ) { // timeInfo is a JSON string, you can deserialize-lo para um objeto usando seu contexto de biblioteca JSON favorito.getLogger().info("Timer is triggered: " + timerInfo); }
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:
|
String |
name()
O nome da variável que representa o objeto de temporizador no código de função. |
String |
schedule()
Uma expressão CRON no formato
|
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:
name
public String name()
O nome da variável que representa o objeto de temporizador no código de função.
Returns:
schedule
public String schedule()
Uma expressão CRON no formato {minute} {hour} {day} {month} {day-of-week}
</code> .</p>
<caption>A table showing some examples of CRON expressions that could be used.</caption>
<row>
<entry thead="yes">
<p>Goal </p>
</entry>
<entry thead="yes">
<p>CRON Expression </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger once every five minutes: </p>
</entry>
<entry thead="no">
<p>0 *&#47;5 * * * * </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger once at the top of every hour: </p>
</entry>
<entry thead="no">
<p>0 0 * * * * </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger once every two hours: </p>
</entry>
<entry thead="no">
<p>0 0 *&#47;2 * * * </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger once every hour from 9 AM to 5 PM: </p>
</entry>
<entry thead="no">
<p>0 0 9-17 * * * </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger at 9:30 AM every day: </p>
</entry>
<entry thead="no">
<p>0 30 9 * * * </p>
</entry>
</row>
<row>
<entry thead="no">
<p>To trigger at 9:30 AM every weekday: </p>
</entry>
<entry thead="no">
<p>0 30 9 * * 1-5 </p>
</entry>
</row>
Returns:
Uma cadeia de caracteres que representa uma expressão CRON que será usada para agendar uma função a ser executada.
Aplica-se a
Azure SDK for Java