Showing items from quartz.net

Quartz.Net – The ITrigger Interface

In this post we document the ITrigger interface for Quartz.net. This simple post is one of the documentation series of posts, so it only documents classes and interfaces that are not documented online. Here is the ITrigger interface in all its glory: namespace Quartz { /// <summary> /// The base interface with properties common to all <see cref="

Continue Reading

Quartz.Net &ndash; The IJobDetail Interface

This is another of the documentation series posts. This post will be documenting the IJobDetail interface. Here it is: namespace Quartz { /// <summary> /// Conveys the detail properties of a given job instance. /// JobDetails are to be created/defined with <see cref="JobBuilder" />. /// </summary> /// <remarks> /// Quartz does not store an actual instance of a <see cref="

Continue Reading

Quartz.Net &ndash; The Quartz.IJob Interface

This post is part of the documenation series. It just provides a place to document some of the classes and interfaces that are not available in the API documentation. In this post we are documenting the IJob interface. Without further ado, here it is: namespace Quartz { /// <summary> /// The interface to be implemented by classes which represent a 'job' to be /// performed.

Continue Reading

Quartz.NET 2 Tutorial - Lesson 1: Using Quartz

Lesson 1: Using Quartz There are at least two ways to use Quartz.Net: embedded (hosted) in your application or as a standalone windows service. Embedding Quartz.Net in Your Application If you are going to host the Quartz.Net scheduler in your application, you’ll need to create a scheduler. This can be easily done through the scheduler factory provided in the distribution.

Continue Reading