views:

22

answers:

0

A couple of questions for the real Quartz gurus out there!

I am a Quartz.net beginner and hoping for some advice before I get burnt:

1) I schedule a bunch of jobs/triggers to go off at specific times in the future. After those tasks are finished I have no more use for the job/trigger information in the database. Is there anything I need to do to avoid a huge database buildup of Quartz events, or do they take care of themselves and automatically get deleted?

2) Various tasks of mine repeat periodically. But sometimes, as I am running the actual job, I realize that I no longer want to continue running periodic events until the job expiry time. How do I stop all future triggers from within an executing job?

3) Is there any way to dump all scheduled tasks. Sometime like "scheduler.DumpAll() ;-)"?

Thanks in advance!