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

How to use
triggerPaused
method
in
org.quartz.SchedulerListener

Best Java code snippets using org.quartz.SchedulerListener.triggerPaused (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 triggerPaused(TriggerKey key) {
  Iterator<SchedulerListener> itr = listeners.iterator();
  while(itr.hasNext()) {
    SchedulerListener l = itr.next();
    l.triggerPaused(key);
  }
}
origin: quartz-scheduler/quartz

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

public void notifySchedulerListenersPausedTrigger(TriggerKey triggerKey) {
  // 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.triggerPaused(triggerKey);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of paused trigger: "
              + triggerKey, e);
    }
  }
}
origin: quartz-scheduler/quartz

public void notifySchedulerListenersPausedTrigger(TriggerKey triggerKey) {
  // 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.triggerPaused(triggerKey);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of paused trigger: "
              + triggerKey, e);
    }
  }
}
org.quartzSchedulerListenertriggerPaused

Javadoc

Called by the Scheduler when a Trigger 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.
  • jobPaused
    Called by the Scheduler when a org.quartz.JobDetail has been paused.
  • jobDeleted,
  • jobPaused,
  • jobResumed,
  • schedulerInStandbyMode,
  • schedulerShuttingdown,
  • schedulerStarted,
  • schedulerStarting,
  • schedulingDataCleared,
  • triggerResumed

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • notifyDataSetChanged (ArrayAdapter)
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • 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
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
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