Tabnine Logo
RemoteScheduler.getRemoteScheduler
Code IndexAdd Tabnine to your IDE (free)

How to use
getRemoteScheduler
method
in
org.quartz.impl.RemoteScheduler

Best Java code snippets using org.quartz.impl.RemoteScheduler.getRemoteScheduler (Showing top 20 results out of 315)

Refine searchRefine arrow

  • RemoteScheduler.invalidateHandleCreateException
origin: quartz-scheduler/quartz

public boolean deleteJobs(List<JobKey> jobKeys) throws SchedulerException {
  try {
    return getRemoteScheduler().deleteJobs(jobKeys);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

/** 
 * @see org.quartz.Scheduler#getPausedTriggerGroups()
 */
public Set<String> getPausedTriggerGroups() throws SchedulerException {
  try {
    return getRemoteScheduler().getPausedTriggerGroups();
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public void scheduleJobs(Map<JobDetail, Set<? extends Trigger>> triggersAndJobs, boolean replace) throws SchedulerException {
    try {
      getRemoteScheduler().scheduleJobs(triggersAndJobs, replace);
    } catch (RemoteException re) {
      throw invalidateHandleCreateException(
          "Error communicating with remote scheduler.", re);
    }
}

origin: quartz-scheduler/quartz

public void addJob(JobDetail jobDetail, boolean replace, boolean storeNonDurableWhileAwaitingScheduling)
    throws SchedulerException {
  try {
    getRemoteScheduler().addJob(jobDetail, replace, storeNonDurableWhileAwaitingScheduling);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public boolean unscheduleJobs(List<TriggerKey> triggerKeys)
    throws SchedulerException {
  try {
    return getRemoteScheduler().unscheduleJobs(triggerKeys);
  } 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 void pauseJobs(GroupMatcher<JobKey> matcher) throws SchedulerException {
  try {
    getRemoteScheduler().pauseJobs(matcher);
  } 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 void resumeTriggers(GroupMatcher<TriggerKey> matcher) throws SchedulerException {
  try {
    getRemoteScheduler().resumeTriggers(matcher);
  } 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 Set<JobKey> getJobKeys(GroupMatcher<JobKey> matcher) throws SchedulerException {
  try {
    return getRemoteScheduler().getJobKeys(matcher);
  } 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 void pauseJobs(GroupMatcher<JobKey> matcher) throws SchedulerException {
  try {
    getRemoteScheduler().pauseJobs(matcher);
  } 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 void resumeJobs(GroupMatcher<JobKey> matcher) throws SchedulerException {
  try {
    getRemoteScheduler().resumeJobs(matcher);
  } 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 boolean checkExists(TriggerKey triggerKey) throws SchedulerException {
  try {
    return getRemoteScheduler().checkExists(triggerKey);
  } 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 List<String> getCalendarNames() throws SchedulerException {
  try {
    return getRemoteScheduler().getCalendarNames();
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public void scheduleJob(JobDetail jobDetail, Set<? extends Trigger> triggersForJob, boolean replace) throws SchedulerException {
  try {
    getRemoteScheduler().scheduleJob(jobDetail, triggersForJob, replace);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public void addJob(JobDetail jobDetail, boolean replace, boolean storeNonDurableWhileAwaitingScheduling)
    throws SchedulerException {
  try {
    getRemoteScheduler().addJob(jobDetail, replace, storeNonDurableWhileAwaitingScheduling);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public boolean deleteJobs(List<JobKey> jobKeys) throws SchedulerException {
  try {
    return getRemoteScheduler().deleteJobs(jobKeys);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public void scheduleJob(JobDetail jobDetail, Set<? extends Trigger> triggersForJob, boolean replace) throws SchedulerException {
  try {
    getRemoteScheduler().scheduleJob(jobDetail, triggersForJob, replace);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public void scheduleJobs(Map<JobDetail, Set<? extends Trigger>> triggersAndJobs, boolean replace) throws SchedulerException {
    try {
      getRemoteScheduler().scheduleJobs(triggersAndJobs, replace);
    } catch (RemoteException re) {
      throw invalidateHandleCreateException(
          "Error communicating with remote scheduler.", re);
    }
}

origin: quartz-scheduler/quartz

public boolean unscheduleJobs(List<TriggerKey> triggerKeys)
    throws SchedulerException {
  try {
    return getRemoteScheduler().unscheduleJobs(triggerKeys);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

/** 
 * @see org.quartz.Scheduler#getPausedTriggerGroups()
 */
public Set<String> getPausedTriggerGroups() throws SchedulerException {
  try {
    return getRemoteScheduler().getPausedTriggerGroups();
  } 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 scheduleJob(Trigger trigger) throws SchedulerException {
  try {
    return getRemoteScheduler().scheduleJob(trigger);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
org.quartz.implRemoteSchedulergetRemoteScheduler

Popular methods of RemoteScheduler

  • <init>
    Construct a RemoteScheduler instance to proxy the given RemoteableQuartzScheduler instance, and wit
  • getSchedulerInstanceId
    Returns the instance Id of the Scheduler.
  • getSchedulerName
    Returns the name of the Scheduler.
  • invalidateHandleCreateException
  • isInStandbyMode
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • isShutdown
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • isStarted
    Whether the scheduler has been started. Note: This only reflects whether #start() has ever been call
  • triggerJob
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ
  • standby
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • triggerJobWithVolatileTrigger
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ

Popular in Java

  • Making http requests using okhttp
  • startActivity (Activity)
  • setContentView (Activity)
  • addToBackStack (FragmentTransaction)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Sublime Text plugins
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