Codota Logo
Scheduler.unscheduleJob
Code IndexAdd Codota to your IDE (free)

How to use
unscheduleJob
method
in
org.quartz.core.Scheduler

Best Java code snippets using org.quartz.core.Scheduler.unscheduleJob (Showing top 3 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: com.xeiam/sundial

/**
 * Removes a Trigger matching the the given Trigger Name
 *
 * @param triggerName
 */
public static void removeTrigger(String triggerName) {
 try {
  getScheduler().unscheduleJob(triggerName);
 } catch (SchedulerException e) {
  logger.error("ERROR REMOVING TRIGGER!!!", e);
 }
}
origin: org.knowm/sundial

/**
 * Removes a Trigger matching the the given Trigger Name
 *
 * @param triggerName
 */
public static void removeTrigger(String triggerName) throws SundialSchedulerException {
 try {
  getScheduler().unscheduleJob(triggerName);
 } catch (SchedulerException e) {
  throw new SundialSchedulerException("ERROR REMOVING TRIGGER!!!", e);
 }
}
origin: knowm/Sundial

/**
 * Removes a Trigger matching the the given Trigger Name
 *
 * @param triggerName
 */
public static void removeTrigger(String triggerName) throws SundialSchedulerException {
 try {
  getScheduler().unscheduleJob(triggerName);
 } catch (SchedulerException e) {
  throw new SundialSchedulerException("ERROR REMOVING TRIGGER!!!", e);
 }
}
org.quartz.coreSchedulerunscheduleJob

Javadoc

Remove the indicated Trigger from the scheduler.

If the related job does not have any other triggers, and the job is not durable, then the job will also be deleted.

Popular methods of Scheduler

  • getTrigger
    Get the Trigger instance with the given key. The returned Trigger object will be a snap-shot of the
  • addJob
    Add the given Job to the Scheduler - with no associated Trigger. The Job will be 'dormant' until it
  • deleteJob
    Delete the identified Job from the Scheduler - and any associated Triggers.
  • getCascadingClassLoadHelper
  • getCurrentlyExecutingJobs
    Return a list of JobExecutionContext objects that represent all currently executing Jobs in this Sch
  • getJobKeys
    Get the keys of all the org.quartz.jobs.JobDetails in the matching groups.
  • getTriggersOfJob
    Get all Trigger s that are associated with the identified org.quartz.jobs.JobDetail. The returned T
  • rescheduleJob
    Remove (delete) the org.quartz.triggers.OperableTrigger with the given key, and store the new given
  • scheduleJob
    Schedule the given org.quartz.triggers.OperableTrigger with the Job identified by the Trigger's sett
  • shutdown
    Halts the Scheduler's firing of Triggers, and cleans up all resources associated with the Scheduler.
  • start
    Starts the Scheduler's threads that fire Triggers. When a scheduler is first created it is in "stand
  • startDelayed
    Calls {#start()} after the indicated number of seconds. (This call does not block). This can be usef
  • start,
  • startDelayed,
  • triggerJob,
  • getListenerManager

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
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