Quartz.Net Tutorial–Lesson 2: Jobs and Triggers
Jobs and triggers are at the very core of the Quartz.Net scheduler. In a nutshell, jobs DO the work and triggers determine WHEN the work gets done.
Quartz.Net Jobs
Creating a Quartz.Net job is pretty straightforward. First, you must implement the IJob interface. The IJob interface is pretty simple. Here it is:
Continue Reading