Package io.hawt.jmx

Interface QuartzFacadeMBean

All Known Implementing Classes:
QuartzFacade

public interface QuartzFacadeMBean
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    updateCronTrigger(String schedulerObjectName, String triggerName, String groupName, int misfireInstruction, String cronExpression, String timeZone)
    Updates an existing cron trigger by changing the cron expression
    void
    updateSimpleTrigger(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 Details

    • 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 instruction
      repeatCount - 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 instruction
      cronExpression - the cron expressions
      timeZone - optional time zone
      Throws:
      Exception