I am implementing quartz.net scheduler to my project, and have some questions about the workings of this library:
- What happens if one job raises an exception without a catch block (unhandled exception)? Would this cause the process to terminate and AppDomain Unloading? Would other jobs suffer?
- Does Quartz.net lib try to restart jobs that raised unhandled exceptions? Or should I implement it manually in my project?
Thanks.