Codota Logo
RemotableQuartzScheduler.rescheduleJob
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain RemotableQuartzScheduler
private void myMethod () {
RemotableQuartzScheduler r =
  • Codota IconRegistry registry;String name;(RemotableQuartzScheduler) registry.lookup(name)
  • Codota IconQuartzScheduler quartzScheduler;(RemotableQuartzScheduler) UnicastRemoteObject.exportObject(quartzScheduler)
  • Codota IconQuartzScheduler quartzScheduler;QuartzSchedulerResources quartzSchedulerResources;(RemotableQuartzScheduler) UnicastRemoteObject.exportObject(quartzScheduler, quartzSchedulerResources.getRMIServerPort())
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public Date rescheduleJob(TriggerKey triggerKey,
    Trigger newTrigger) throws SchedulerException {
  try {
    return getRemoteScheduler().rescheduleJob(triggerKey,
        newTrigger);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}

origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public Date rescheduleJob(TriggerKey triggerKey,
    Trigger newTrigger) throws SchedulerException {
  try {
    return getRemoteScheduler().rescheduleJob(triggerKey,
        newTrigger);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}

origin: quartz/quartz-all

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
public Date rescheduleJob(String triggerName,
    String groupName, Trigger newTrigger) throws SchedulerException {
  try {
    return getRemoteScheduler().rescheduleJob(schedCtxt, triggerName,
        groupName, newTrigger);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}

origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
public Date rescheduleJob(String triggerName,
    String groupName, Trigger newTrigger) throws SchedulerException {
  try {
    return getRemoteScheduler().rescheduleJob(schedCtxt, triggerName,
        groupName, newTrigger);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
 
org.quartz.coreRemotableQuartzSchedulerrescheduleJob

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

  • Reactive rest calls using spring rest template
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • getSharedPreferences (Context)
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Collectors (java.util.stream)
  • JButton (javax.swing)
  • JTextField (javax.swing)
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