congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
JobStoreSupport$MisfireHandler.initialize
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: quartz-scheduler/quartz

/**
 * @see org.quartz.spi.JobStore#schedulerStarted()
 */
public void schedulerStarted() throws SchedulerException {
  if (isClustered()) {
    clusterManagementThread = new ClusterManager();
    if(initializersLoader != null)
      clusterManagementThread.setContextClassLoader(initializersLoader);
    clusterManagementThread.initialize();
  } else {
    try {
      recoverJobs();
    } catch (SchedulerException se) {
      throw new SchedulerConfigException(
          "Failure occured during job recovery.", se);
    }
  }
  misfireHandler = new MisfireHandler();
  if(initializersLoader != null)
    misfireHandler.setContextClassLoader(initializersLoader);
  misfireHandler.initialize();
  schedulerRunning = true;
  
  getLog().debug("JobStore background threads started (as scheduler was started).");
}

origin: quartz-scheduler/quartz

/**
 * @see org.quartz.spi.JobStore#schedulerStarted()
 */
public void schedulerStarted() throws SchedulerException {
  if (isClustered()) {
    clusterManagementThread = new ClusterManager();
    if(initializersLoader != null)
      clusterManagementThread.setContextClassLoader(initializersLoader);
    clusterManagementThread.initialize();
  } else {
    try {
      recoverJobs();
    } catch (SchedulerException se) {
      throw new SchedulerConfigException(
          "Failure occured during job recovery.", se);
    }
  }
  misfireHandler = new MisfireHandler();
  if(initializersLoader != null)
    misfireHandler.setContextClassLoader(initializersLoader);
  misfireHandler.initialize();
  schedulerRunning = true;
  
  getLog().debug("JobStore background threads started (as scheduler was started).");
}

origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * @see org.quartz.spi.JobStore#schedulerStarted()
 */
public void schedulerStarted() throws SchedulerException {
  if (isClustered()) {
    clusterManagementThread = new ClusterManager();
    if(initializersLoader != null)
      clusterManagementThread.setContextClassLoader(initializersLoader);
    clusterManagementThread.initialize();
  } else {
    try {
      recoverJobs();
    } catch (SchedulerException se) {
      throw new SchedulerConfigException(
          "Failure occured during job recovery.", se);
    }
  }
  misfireHandler = new MisfireHandler();
  if(initializersLoader != null)
    misfireHandler.setContextClassLoader(initializersLoader);
  misfireHandler.initialize();
}
 
origin: quartz/quartz-all

/**
 * @see org.quartz.spi.JobStore#schedulerStarted()
 */
public void schedulerStarted() throws SchedulerException {
  if (isClustered()) {
    clusterManagementThread = new ClusterManager();
    if(initializersLoader != null)
      clusterManagementThread.setContextClassLoader(initializersLoader);
    clusterManagementThread.initialize();
  } else {
    try {
      recoverJobs();
    } catch (SchedulerException se) {
      throw new SchedulerConfigException(
          "Failure occured during job recovery.", se);
    }
  }
  misfireHandler = new MisfireHandler();
  if(initializersLoader != null)
    misfireHandler.setContextClassLoader(initializersLoader);
  misfireHandler.initialize();
}

org.quartz.impl.jdbcjobstoreJobStoreSupport$MisfireHandlerinitialize

Popular methods of JobStoreSupport$MisfireHandler

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

Popular in Java

  • Updating database using SQL prepared statement
  • startActivity (Activity)
  • runOnUiThread (Activity)
  • setRequestProperty (URLConnection)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Permission (java.security)
    Legacy security code; do not use.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top 17 Plugins for Android Studio
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