congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RemoteMBeanScheduler.getSchedulerName
Code IndexAdd Tabnine to your IDE (free)

How to use
getSchedulerName
method
in
org.quartz.impl.RemoteMBeanScheduler

Best Java code snippets using org.quartz.impl.RemoteMBeanScheduler.getSchedulerName (Showing top 6 results out of 315)

origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown() throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke("shutdown", new Object[] {}, new String[] {});
  SchedulerRepository.getInstance().remove(schedulerName);
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown() throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke("shutdown", new Object[] {}, new String[] {});
  SchedulerRepository.getInstance().remove(schedulerName);
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown() throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke("shutdown", new Object[] {}, new String[] {});
  SchedulerRepository.getInstance().remove(schedulerName);
}
origin: quartz/quartz-all

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown() throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke("shutdown", new Object[] {}, new String[] {});
  SchedulerRepository.getInstance().remove(schedulerName);
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown(boolean waitForJobsToComplete)
  throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke(
    "shutdown", 
    new Object[] { toBoolean(waitForJobsToComplete) }, 
    new String[] { boolean.class.getName() });
  
  SchedulerRepository.getInstance().remove(schedulerName);
}
origin: quartz/quartz-all

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public void shutdown(boolean waitForJobsToComplete)
  throws SchedulerException {
  // Have to get the scheduler name before we actually call shutdown.
  String schedulerName = getSchedulerName();
  
  invoke(
    "shutdown", 
    new Object[] { toBoolean(waitForJobsToComplete) }, 
    new String[] { boolean.class.getName() });
  
  SchedulerRepository.getInstance().remove(schedulerName);
}
org.quartz.implRemoteMBeanSchedulergetSchedulerName

Javadoc

Returns the name of the Scheduler.

Popular methods of RemoteMBeanScheduler

  • getAttribute
  • getAttributes
    Get the given attributes of the remote Scheduler MBean.
  • initialize
    Initialize this RemoteMBeanScheduler instance, connecting to the remote MBean server.
  • invoke
    Invoke the given operation on the remote Scheduler MBean.
  • setSchedulerObjectName
    Set the name under which the Scheduler MBean is registered on the remote MBean server.
  • triggerJob
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ
  • isInStandbyMode
    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
  • setSchedulingContext
    Set the scheduling context of this proxy.
  • standby
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • toBoolean
  • triggerJobWithVolatileTrigger
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ
  • toBoolean,
  • triggerJobWithVolatileTrigger

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • String (java.lang)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Permission (java.security)
    Legacy security code; do not use.
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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