Skip to content

Instantly share code, notes, and snippets.

@mpraglowski
Created June 16, 2014 16:34
Show Gist options
  • Save mpraglowski/6730781bcb89557a414f to your computer and use it in GitHub Desktop.
Save mpraglowski/6730781bcb89557a414f to your computer and use it in GitHub Desktop.
Simplest Quartz.NET job
public class MyJob : IJob
{
public void Execute(IJobExecutionContext context)
{
// ... just get the job done here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment