IJob Interface

Quartz.NET 3.0 API Documentation
The interface to be implemented by classes which represent a 'job' to be performed.

Namespace:  Quartz
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
public interface IJob

The IJob type exposes the following members.

Methods

  NameDescription
Public methodExecute
Called by the IScheduler when a ITrigger fires that is associated with the IJob.
Top
Remarks

Instances of this interface must have a public no-argument constructor. JobDataMap provides a mechanism for 'instance member data' that may be required by some implementations of this interface.
See Also

Reference