I have a Windows service with built-in Quartz.Net, but cannot find a way to create a link to an instance of the object in the Quartz.Net job ...
When the Windows service starts, it starts some objects for logging, database access, and other purposes, so I would like my Quartz.Net jobs to use these already created objects instead of creating their own instances of these objects. However, Quartz.Net jobs are created by the scheduler using a constructor with no arguments, and therefore there is no way to pass a link using the constructor.
Should I create my own JobFactory implementation and is this the only way to achieve this?
Dean kuga
source share