TimerTrigger Interface
public interface TimerTrigger
TimerTrigger(name = « keepAliveTrigger », schedule = « 0 */5 * * * * ») String timerInfo, ExecutionContext context ) { // timeInfo est une chaîne JSON, vous pouvez la désérialiser en objet à l’aide de votre bibliothèque JSON préférée context.getLogger().info(« Timer is triggered: " + timerInfo); }
Résumé de la méthode
Modificateur et type | Méthode et description |
---|---|
String |
dataType()
Définit comment le runtime Functions doit traiter la valeur de paramètre. Les valeurs possibles sont les suivantes :
|
String |
name()
Nom de la variable qui représente l’objet de minuteur dans le code de la fonction. |
String |
schedule()
Expression CRON au format
|
Détails de la méthode
dataType
public String dataType() default ""
Définit comment le runtime Functions doit traiter la valeur de paramètre. Les valeurs possibles sont les suivantes :
<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()
Nom de la variable qui représente l’objet de minuteur dans le code de la fonction.
Returns:
schedule
public String schedule()
Expression CRON au format {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:
Chaîne représentant une expression CRON qui sera utilisée pour planifier l’exécution d’une fonction.
S’applique à
Azure SDK for Java