Package io.hawt.jmx
Interface QuartzFacadeMBean
-
- All Known Implementing Classes:
QuartzFacade
public interface QuartzFacadeMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdateCronTrigger(String schedulerObjectName, String triggerName, String groupName, int misfireInstruction, String cronExpression, String timeZone)Updates an existing cron trigger by changing the cron expressionvoidupdateSimpleTrigger(String schedulerObjectName, String triggerName, String groupName, int misfireInstruction, int repeatCount, long repeatInterval)Updates an existing simple trigger by changing the repeat counter and interval values.
-
-
-
Method Detail
-
updateSimpleTrigger
void updateSimpleTrigger(String schedulerObjectName, String triggerName, String groupName, int misfireInstruction, int repeatCount, long repeatInterval) throws Exception
Updates an existing simple trigger by changing the repeat counter and interval values.- Parameters:
misfireInstruction- the misfire instructionrepeatCount- the repeat count (use 0 for forever)repeatInterval- the repeat interval in millis- Throws:
Exception
-
updateCronTrigger
void updateCronTrigger(String schedulerObjectName, String triggerName, String groupName, int misfireInstruction, String cronExpression, String timeZone) throws Exception
Updates an existing cron trigger by changing the cron expression- Parameters:
misfireInstruction- the misfire instructioncronExpression- the cron expressionstimeZone- optional time zone- Throws:
Exception
-
-