Codota Logo
SchedulerListener.jobPaused
Code IndexAdd Codota to your IDE (free)

How to use
jobPaused
method
in
org.quartz.SchedulerListener

Best Java code snippets using org.quartz.SchedulerListener.jobPaused (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

public void jobPaused(JobKey key) {
  Iterator<SchedulerListener> itr = listeners.iterator();
  while(itr.hasNext()) {
    SchedulerListener l = itr.next();
    l.jobPaused(key);
  }
}
origin: quartz-scheduler/quartz

public void jobPaused(JobKey key) {
  Iterator<SchedulerListener> itr = listeners.iterator();
  while(itr.hasNext()) {
    SchedulerListener l = itr.next();
    l.jobPaused(key);
  }
}
origin: quartz-scheduler/quartz

public void notifySchedulerListenersPausedJob(JobKey key) {
  // build a list of all scheduler listeners that are to be notified...
  List<SchedulerListener> schedListeners = buildSchedulerListenerList();
  // notify all scheduler listeners
  for(SchedulerListener sl: schedListeners) {
    try {
      sl.jobPaused(key);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of paused job: "
              + key, e);
    }
  }
}
origin: quartz-scheduler/quartz

public void notifySchedulerListenersPausedJob(JobKey key) {
  // build a list of all scheduler listeners that are to be notified...
  List<SchedulerListener> schedListeners = buildSchedulerListenerList();
  // notify all scheduler listeners
  for(SchedulerListener sl: schedListeners) {
    try {
      sl.jobPaused(key);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of paused job: "
              + key, e);
    }
  }
}
org.quartzSchedulerListenerjobPaused

Javadoc

Called by the Scheduler when a org.quartz.JobDetail has been paused.

Popular methods of SchedulerListener

  • jobScheduled
    Called by the Scheduler when a org.quartz.JobDetail is scheduled.
  • jobUnscheduled
    Called by the Scheduler when a org.quartz.JobDetail is unscheduled.
  • jobsPaused
    Called by the Scheduler when a org.quartz.JobDetail or group of org.quartz.JobDetails has been pau
  • jobsResumed
    Called by the Scheduler when a org.quartz.JobDetail or group of org.quartz.JobDetails has been un-
  • schedulerError
    Called by the Scheduler when a serious error has occured within the scheduler - such as repeated fa
  • schedulerShutdown
    Called by the Scheduler to inform the listener that it has shutdown.
  • triggerFinalized
    Called by the Scheduler when a Trigger has reached the condition in which it will never fire again.
  • triggersPaused
    Called by the Scheduler when a Trigger or group of Triggers has been paused. If a group was pause
  • triggersResumed
    Called by the Scheduler when a Trigger or group of Triggers has been un-paused. If a group was re
  • jobAdded
    Called by the Scheduler when a org.quartz.JobDetail has been added.
  • jobDeleted
    Called by the Scheduler when a org.quartz.JobDetail has been deleted.
  • jobResumed
    Called by the Scheduler when a org.quartz.JobDetail has been un-paused.
  • jobDeleted,
  • jobResumed,
  • schedulerInStandbyMode,
  • schedulerShuttingdown,
  • schedulerStarted,
  • schedulerStarting,
  • schedulingDataCleared,
  • triggerPaused,
  • triggerResumed

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onRequestPermissionsResult (Fragment)
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now