Class ScheduleManager

java.lang.Object
de.xima.fc.timing.ScheduleManager

public class ScheduleManager extends Object
Manager-class for starting, stopping and removing schedules jobs
Author:
XIMA MEDIA GmbH
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    addJob(IJobWrapper job, org.quartz.Trigger trigger)
    Method to add and start an job
    static org.quartz.Scheduler
    Deprecated.
    static Properties
    Method to get the default Properties to start the scheduler with
    static org.quartz.JobDetail
    getJob(org.quartz.JobKey key)
    Method to get a scheduled job by his key
    static Set<org.quartz.JobKey>
    getJobs(NameMatcher<org.quartz.JobKey> nameMatcher)
    Finds all quartz jobs with a certain name.
    static Set<org.quartz.JobKey>
    getJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher)
    Finds all jobs that belong to the given groups.
    static Set<org.quartz.JobKey>
    getJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher, NameMatcher<org.quartz.JobKey> nameMatcher)
    Finds all jobs with a certain name in the given groups.
     
    static org.quartz.Scheduler
     
    static org.quartz.Trigger
    getTrigger(org.quartz.TriggerKey key)
    Method to get an trigger by his key
    static Set<org.quartz.TriggerKey>
    getTriggers(NameMatcher<org.quartz.TriggerKey> nameMatcher)
    Finds all quartz triggers with a certain name.
    static Set<org.quartz.TriggerKey>
    getTriggers(org.quartz.impl.matchers.GroupMatcher<org.quartz.TriggerKey> groupMatcher)
    Finds all triggers that belong to the given groups.
    static Set<org.quartz.TriggerKey>
    getTriggers(org.quartz.impl.matchers.GroupMatcher<org.quartz.TriggerKey> groupMatcher, NameMatcher<org.quartz.TriggerKey> nameMatcher)
    Finds all triggers with a certain name in the given groups.
    static void
    Deprecated.
    Scheduler lifecycle is now managed by SchedulerProviderImpl, this method does not have any effect anymore.
    static void
    Deprecated.
    Use observer with SchedulerStartedEvent
    static void
    removeJob(org.quartz.JobKey key)
    Method to remove a job by his key
    static void
    removeJobs(Set<org.quartz.JobKey> jobKeys)
    Removes all jobs that match the given job keys.
    static void
    removeJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher)
    Removes all job that match the given group.
    static void
    removeJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher, NameMatcher<org.quartz.JobKey> nameMatcher)
    Removes all job that match the given group and name.
    static void
    Deprecated.
    Use observer with SchedulerStartedEvent
    static void
    Deprecated, for removal: This API element is subject to removal in a future version.
    will be removed, does not have any effect anymore.
    static void
    Method to shut down the scheduler
    static void
     
    static void
    Method to start the scheduler

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ScheduleManager

      public ScheduleManager()
  • Method Details

    • addJob

      public static void addJob(IJobWrapper job, org.quartz.Trigger trigger)
      Method to add and start an job
      Parameters:
      job - IJobWrapper with data to start the job with
      trigger - Trigger to schedule the job
    • getDefaultProperties

      public static Properties getDefaultProperties()
      Method to get the default Properties to start the scheduler with
      Returns:
      Properties to start the scheduler with
    • getJob

      public static org.quartz.JobDetail getJob(org.quartz.JobKey key)
      Method to get a scheduled job by his key
      Parameters:
      key - JobKey to search the job with
      Returns:
      JobDetail the found job or null
    • getJobs

      public static Set<org.quartz.JobKey> getJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher)
      Finds all jobs that belong to the given groups.
      Parameters:
      groupMatcher - Details on the groups to match.
      Returns:
      All jobs that belong to a group matching the given matcher.
    • getJobs

      public static Set<org.quartz.JobKey> getJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher, NameMatcher<org.quartz.JobKey> nameMatcher)
      Finds all jobs with a certain name in the given groups.
      Parameters:
      groupMatcher - Details on the group to match.
      nameMatcher - Details on the name to match.
      Returns:
      All jobs with a name that matches the given name matcher that also belongs to a group matching the given group matcher.
    • getJobs

      public static Set<org.quartz.JobKey> getJobs(NameMatcher<org.quartz.JobKey> nameMatcher)
      Finds all quartz jobs with a certain name.
      Parameters:
      nameMatcher - Details on the name to match.
      Returns:
      All jobs with a name that match the given matcher.
    • getScheduler

      public static org.quartz.Scheduler getScheduler()
      Returns:
      The current quartz scheduler. When quartz is not active, this returns null.
    • getTrigger

      public static org.quartz.Trigger getTrigger(org.quartz.TriggerKey key)
      Method to get an trigger by his key
      Parameters:
      key - TriggerKey to search the trigger for
      Returns:
      Trigger the found trigger or null
    • getTriggers

      public static Set<org.quartz.TriggerKey> getTriggers(org.quartz.impl.matchers.GroupMatcher<org.quartz.TriggerKey> groupMatcher)
      Finds all triggers that belong to the given groups.
      Parameters:
      groupMatcher - Details on the groups to match.
      Returns:
      All triggers that belong to a group matching the given matcher.
    • getTriggers

      public static Set<org.quartz.TriggerKey> getTriggers(org.quartz.impl.matchers.GroupMatcher<org.quartz.TriggerKey> groupMatcher, NameMatcher<org.quartz.TriggerKey> nameMatcher)
      Finds all triggers with a certain name in the given groups.
      Parameters:
      groupMatcher - Details on the group to match.
      nameMatcher - Details on the name to match.
      Returns:
      All triggers with a name that matches the given name matcher that also belongs to a group matching the given group matcher.
    • getTriggers

      public static Set<org.quartz.TriggerKey> getTriggers(NameMatcher<org.quartz.TriggerKey> nameMatcher)
      Finds all quartz triggers with a certain name.
      Parameters:
      nameMatcher - Details on the name to match.
      Returns:
      All triggers with a name that match the given matcher.
    • initialize

      @Deprecated public static void initialize()
      Deprecated.
      Scheduler lifecycle is now managed by SchedulerProviderImpl, this method does not have any effect anymore.
      Initializes the schedule manager. Checks whether all preconditions are met (database running etc.)
    • registerStartupListener

      @Deprecated public static void registerStartupListener(IBaseNotificationListener listener)
      Deprecated.
      Use observer with SchedulerStartedEvent
      Parameters:
      listener - Listener to invoke when the scheduler is started.
    • removeJob

      public static void removeJob(org.quartz.JobKey key)
      Method to remove a job by his key
      Parameters:
      key - JobKey to find the job to remove
    • removeJobs

      public static void removeJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher)
      Removes all job that match the given group.
      Parameters:
      groupMatcher - Groups of jobs to remove.
    • removeJobs

      public static void removeJobs(Set<org.quartz.JobKey> jobKeys)
      Removes all jobs that match the given job keys.
      Parameters:
      jobKeys - JobKeys of jobs to remove.
    • removeJobs

      public static void removeJobs(org.quartz.impl.matchers.GroupMatcher<org.quartz.JobKey> groupMatcher, NameMatcher<org.quartz.JobKey> nameMatcher)
      Removes all job that match the given group and name.
      Parameters:
      groupMatcher - Groups of jobs to remove.
      nameMatcher - Name of jobs to remove.
    • removeStartupListener

      public static void removeStartupListener(IBaseNotificationListener listener)
      Deprecated.
      Use observer with SchedulerStartedEvent
      Parameters:
      listener - Listener not to invoke anymore when the scheduler is started.
    • setCustomProperties

      @Deprecated(forRemoval=true) public static void setCustomProperties(Properties properties)
      Deprecated, for removal: This API element is subject to removal in a future version.
      will be removed, does not have any effect anymore.
      Method to override the default properties
      Parameters:
      properties - Properties to start the scheduler with
    • shutdown

      public static void shutdown()
      Method to shut down the scheduler
    • start

      public static void start()
      Method to start the scheduler
    • standBy

      public static void standBy()
    • createUnstartedScheduler

      @Deprecated public static org.quartz.Scheduler createUnstartedScheduler()
      Deprecated.
    • getQuartzDeletionExecutor

      public static ExecutorService getQuartzDeletionExecutor()