Azure WebJob
#Something about Azure WebJob
##Timer triggered job
- 可以使用 'TimerTrigger' 屬性來設定,省去 Azure Scheduler Job Collections 服務的成本,當然前提是這個 trigger 是不需要後台或 OP 更改,比較屬於 OS cron job 的那種型式。
- 要拿掉 WebJob template 中屬於 continuous job 的設定,如下:
```=clike
// The following code ensures that the WebJob will be running continuously
//var host = new JobHost(config);
//host.RunAndBlock();
```
留言