Service & Scheduler: Using Topshelf, Quartz, & Other OSS Bits Part 2 «

added by adron
8/5/2011 8:44:28 PM

2626 Views

In the previous entry in this series I setup a service using TopShelf. Now it is time to jump into scheduling with Quartz. I’ve started an entirely new service to work through an example of this service functionality. To read more about Quartz.NET from the source, check out the Quartz.NET Project Site or the Github Repo. Open up Visual Studio and create another Windows Console Project. Next add a reference to Quartz.NET with Nuget. Adding Quartz. Next add a class called SomeJob as shown. using System...


1 comments

dpeterson
8/5/2011 9:20:14 PM
So from the example in the article, it looks like you've created a job that executes every 5 seconds correct?
How does this work from a threading standpoint? Is the job execution blocking? Are there completion callbacks available?