Created
June 16, 2014 16:34
-
-
Save mpraglowski/6730781bcb89557a414f to your computer and use it in GitHub Desktop.
Simplest Quartz.NET job
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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