Reputation: 62642
I am tying to implement the following algorithm with Quartz and not really sure if it can be done. This is my first attempt at using quartz.
Monthly Job to figure who needs reports Fires
What I have not been able to figure out.
I am using Spring 3.2 an Quartz 2.1
Upvotes: 1
Views: 1774
Reputation: 4224
Nice use case for quartz usage. You can try sheduling a new job from within the job class. This can be possibly with by creating a new jobdetail and trigger from inside execute() method.
Upvotes: 1