Codota Logo
JobStoreSupport$MisfireHandler.shutdown
Code IndexAdd Codota to your IDE (free)

How to use
shutdown
method
in
org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler

Best Java code snippets using org.quartz.impl.jdbcjobstore.JobStoreSupport$MisfireHandler.shutdown (Showing top 4 results out of 315)

  • Common ways to obtain JobStoreSupport$MisfireHandler
private void myMethod () {
JobStoreSupport$MisfireHandler j =
  • Codota Iconnew MisfireHandler()
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

misfireHandler.shutdown();
try {
  misfireHandler.join();
origin: quartz-scheduler/quartz

misfireHandler.shutdown();
try {
  misfireHandler.join();
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Called by the QuartzScheduler to inform the <code>JobStore</code> that
 * it should free up all of it's resources because the scheduler is
 * shutting down.
 * </p>
 */
public void shutdown() {
  if (clusterManagementThread != null) {
    clusterManagementThread.shutdown();
  }
  if (misfireHandler != null) {
    misfireHandler.shutdown();
  }
  
  try {
    DBConnectionManager.getInstance().shutdown(getDataSource());
  } catch (SQLException sqle) {
    getLog().warn("Database connection shutdown unsuccessful.", sqle);
  }        
}
origin: quartz/quartz-all

/**
 * <p>
 * Called by the QuartzScheduler to inform the <code>JobStore</code> that
 * it should free up all of it's resources because the scheduler is
 * shutting down.
 * </p>
 */
public void shutdown() {
  if (clusterManagementThread != null) {
    clusterManagementThread.shutdown();
  }
  if (misfireHandler != null) {
    misfireHandler.shutdown();
  }
  
  try {
    DBConnectionManager.getInstance().shutdown(getDataSource());
  } catch (SQLException sqle) {
    getLog().warn("Database connection shutdown unsuccessful.", sqle);
  }        
}
org.quartz.impl.jdbcjobstoreJobStoreSupport$MisfireHandlershutdown

Popular methods of JobStoreSupport$MisfireHandler

  • <init>
  • initialize
  • interrupt
  • manage
  • setContextClassLoader
  • setDaemon
  • setName
  • join
  • start

Popular in Java

  • Making http requests using okhttp
  • getApplicationContext (Context)
  • setRequestProperty (URLConnection)
  • setContentView (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Socket (java.net)
    Provides a client-side TCP socket.
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
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