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

How to use
schedulingDataCleared
method
in
org.quartz.SchedulerListener

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

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

public void notifySchedulerListenersUnscheduled(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 {
      if(triggerKey == null)
        sl.schedulingDataCleared();
      else
        sl.jobUnscheduled(triggerKey);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of unscheduled job."
              + "  Triger=" + (triggerKey == null ? "ALL DATA" : triggerKey), e);
    }
  }
}
origin: quartz-scheduler/quartz

public void notifySchedulerListenersUnscheduled(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 {
      if(triggerKey == null)
        sl.schedulingDataCleared();
      else
        sl.jobUnscheduled(triggerKey);
    } catch (Exception e) {
      getLog().error(
          "Error while notifying SchedulerListener of unscheduled job."
              + "  Triger=" + (triggerKey == null ? "ALL DATA" : triggerKey), e);
    }
  }
}
org.quartzSchedulerListenerschedulingDataCleared

Javadoc

Called by the Scheduler to inform the listener that all jobs, triggers and calendars were deleted.

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,
  • triggerPaused,
  • triggerResumed

Popular in Java

  • Making http post requests using okhttp
  • getExternalFilesDir (Context)
  • getSystemService (Context)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
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