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

How to use
RemotableQuartzScheduler
in
org.quartz.core

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

origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void addCalendar(String calName, Calendar calendar, boolean replace, boolean updateTriggers)
  throws SchedulerException {
  try {
    getRemoteScheduler().addCalendar(calName, calendar,
        replace, updateTriggers);
  } 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

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public boolean deleteCalendar(String calName) throws SchedulerException {
  try {
    return getRemoteScheduler().deleteCalendar(calName);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.isClustered(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } 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

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public Calendar getCalendar(String calName) throws SchedulerException {
  try {
    return getRemoteScheduler().getCalendar(calName);
  } 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> getJobGroupNames() throws SchedulerException {
  try {
    return getRemoteScheduler().getJobGroupNames();
  } 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<JobExecutionContext> getCurrentlyExecutingJobs() throws SchedulerException {
  try {
    return getRemoteScheduler().getCurrentlyExecutingJobs();
  } 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 deleteJob(JobKey jobKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler()
        .deleteJob(jobKey);
  } 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 JobDetail getJobDetail(JobKey jobKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getJobDetail(jobKey);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.isClustered(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } 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

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public Calendar getCalendar(String calName) throws SchedulerException {
  try {
    return getRemoteScheduler().getCalendar(calName);
  } 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> getJobGroupNames() throws SchedulerException {
  try {
    return getRemoteScheduler().getJobGroupNames();
  } 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<JobExecutionContext> getCurrentlyExecutingJobs() throws SchedulerException {
  try {
    return getRemoteScheduler().getCurrentlyExecutingJobs();
  } 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 deleteJob(JobKey jobKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler()
        .deleteJob(jobKey);
  } 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 JobDetail getJobDetail(JobKey jobKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getJobDetail(jobKey);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz/quartz-all

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } 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: 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 String[] getCalendarNames() throws SchedulerException {
  try {
    return getRemoteScheduler().getCalendarNames(schedCtxt);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
org.quartz.coreRemotableQuartzScheduler

Most used methods

  • 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
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top PhpStorm 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