按时间触发
SDK 支持基于具有 6 个字段 ({second} {minute} {hour} {day} {month} {day of the week}
)的 CRON 表达式触发的时间。它需要在 JobHostConfiguration
上进行额外设置 : **** ****
config.UseTimers();
你的时间触发函数会响应此语法:
// Runs once every 5 minutes
public static void CronJob([TimerTrigger("0 */5 * * * *")] TimerInfo timer)
{
}
// Runs immediately on startup, then every two hours thereafter
public static void StartupJob([TimerTrigger("0 0 */2 * * *", RunOnStartup = true)] TimerInfo timerInfo)
{
}