congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JobStoreSupport$ClusterManager.initialize
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.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$ClusterManagerinitialize

Popular methods of JobStoreSupport$ClusterManager

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

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • getResourceAsStream (ClassLoader)
  • setContentView (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • JTextField (javax.swing)
  • Best IntelliJ 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