WebJobs Flashcards
1
Q
Starts immediately when the WebJob is created. To keep the job from ending, the program or script typically does its work inside an endless loop. If the job does end, you can restart it.
A
Continuous
2
Q
Runs on all instances that the web app runs on. You can optionally restrict the WebJob to a single instance.
A
Continuous
3
Q
Supports remote debugging
A
Continuous
4
Q
Starts only when triggered manually or on a schedule.
A
Triggered
5
Q
Runs on a single instance that Azure selects for load balancing.
A
Triggered
6
Q
Doesn’t support remote debugging.
A
Triggered