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
      void updateCronTrigger​(java.lang.String schedulerObjectName, java.lang.String triggerName, java.lang.String groupName, int misfireInstruction, java.lang.String cronExpression, java.lang.String timeZone)
      Updates an existing cron trigger by changing the cron expression
      void updateSimpleTrigger​(java.lang.String schedulerObjectName, java.lang.String triggerName, java.lang.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​(java.lang.String schedulerObjectName,
                                 java.lang.String triggerName,
                                 java.lang.String groupName,
                                 int misfireInstruction,
                                 int repeatCount,
                                 long repeatInterval)
                          throws java.lang.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:
        java.lang.Exception
      • updateCronTrigger

        void updateCronTrigger​(java.lang.String schedulerObjectName,
                               java.lang.String triggerName,
                               java.lang.String groupName,
                               int misfireInstruction,
                               java.lang.String cronExpression,
                               java.lang.String timeZone)
                        throws java.lang.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:
        java.lang.Exception