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

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

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

origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public Trigger getTrigger(TriggerKey triggerKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getTrigger(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 Trigger getTrigger(TriggerKey triggerKey)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getTrigger(triggerKey);
  } 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 Trigger getTrigger(String triggerName, String triggerGroup)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getTrigger(schedCtxt, triggerName,
        triggerGroup);
  } 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 Trigger getTrigger(String triggerName, String triggerGroup)
  throws SchedulerException {
  try {
    return getRemoteScheduler().getTrigger(schedCtxt, triggerName,
        triggerGroup);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
org.quartz.coreRemotableQuartzSchedulergetTrigger

Popular methods of RemotableQuartzScheduler

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

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Join (org.hibernate.mapping)
  • Top plugins for WebStorm
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