Click here to Skip to main content
15,891,874 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is the difference between pauseJob() and pauseTrigger() in quartz scheduler?
How can select one among them for use?

If I am using pauseJob(), will it
1. pause all the jobs in execution
or
2. pause all triggers of that job

which is right?
Posted
Updated 4-Apr-13 22:21pm
v3

1 solution

pausejob suspends execution of a particular job whereas pausetrigger results in suspending execution of all the jobs associated with it. So you should be using pauseTrigger to stop execution of all jobs associated with it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900