-1

How to construct quartz trigger that will wait for delayed job?

For example: Trigger is set to run job every 5 minute but job can take more than 5 minute.

I would like to finish delayed job a than start new interval.

Thomas Ayoub
  • 29,063
  • 15
  • 95
  • 142
m45k1c
  • 9
  • 4

1 Answers1

0

Instead of scheduling the job to run every 5 minutes, create it as single time job and reschedule it each time it is executed to run again in 5 minutes.

Alioza
  • 1,690
  • 12
  • 14