How to create dependencies between Jobs in Quartz.NET

0

I have a Windows Services where I use Quartz.NET to schedule tasks on my system, however there are tasks that can only be performed after the successful completion of another.

I did not find documentation where it indicates this possibility in triggers.

Can someone give me a light?

    
asked by anonymous 07.06.2017 / 15:17

1 answer

0

As I researched, using JobChainingJobListener it is possible to chain the execution of Jobs and this already solves my problem.

It is also possible, at worst, to create a Listener in your hand using IJobListener .

    
07.06.2017 / 17:09