congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RemotableQuartzScheduler.interrupt
Code IndexAdd Tabnine to your IDE (free)

How to use
interrupt
method
in
org.quartz.core.RemotableQuartzScheduler

Best Java code snippets using org.quartz.core.RemotableQuartzScheduler.interrupt (Showing top 6 results out of 315)

origin: quartz-scheduler/quartz

public boolean interrupt(String fireInstanceId) throws UnableToInterruptJobException {
  try {
    return getRemoteScheduler().interrupt(fireInstanceId);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
origin: quartz-scheduler/quartz

public boolean interrupt(String fireInstanceId) throws UnableToInterruptJobException {
  try {
    return getRemoteScheduler().interrupt(fireInstanceId);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
origin: quartz-scheduler/quartz

/**
 * @see org.quartz.Scheduler#interrupt(JobKey)
 */
public boolean interrupt(JobKey jobKey) throws UnableToInterruptJobException  {
  try {
    return getRemoteScheduler().interrupt(jobKey);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
origin: quartz-scheduler/quartz

/**
 * @see org.quartz.Scheduler#interrupt(JobKey)
 */
public boolean interrupt(JobKey jobKey) throws UnableToInterruptJobException  {
  try {
    return getRemoteScheduler().interrupt(jobKey);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * @see org.quartz.Scheduler#interrupt(java.lang.String, java.lang.String)
 */
public boolean interrupt(String jobName, String groupName) throws UnableToInterruptJobException  {
  try {
    return getRemoteScheduler().interrupt(schedCtxt, jobName, groupName);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
origin: quartz/quartz-all

/**
 * @see org.quartz.Scheduler#interrupt(java.lang.String, java.lang.String)
 */
public boolean interrupt(String jobName, String groupName) throws UnableToInterruptJobException  {
  try {
    return getRemoteScheduler().interrupt(schedCtxt, jobName, groupName);
  } catch (RemoteException re) {
    throw new UnableToInterruptJobException(invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re));
  } catch (SchedulerException se) {
    throw new UnableToInterruptJobException(se);
  }
}
org.quartz.coreRemotableQuartzSchedulerinterrupt

Popular methods of RemotableQuartzScheduler

  • addCalendar
  • addJob
  • deleteCalendar
  • deleteJob
  • getCalendar
  • getCalendarNames
  • getCurrentlyExecutingJobs
  • getJobDetail
  • getJobGroupNames
  • getJobStoreClass
  • getPausedTriggerGroups
  • getSchedulerContext
  • getPausedTriggerGroups,
  • getSchedulerContext,
  • getSchedulerInstanceId,
  • getSchedulerName,
  • getThreadPoolClass,
  • getThreadPoolSize,
  • getTrigger,
  • getTriggerGroupNames,
  • getTriggerState,
  • getTriggersOfJob

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • JLabel (javax.swing)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now