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...
How does this work from a threading standpoint? Is the job execution blocking? Are there completion callbacks available?