Codota Logo
SchedulerPluginWithUserTransactionSupport.initialize
Code IndexAdd Codota to your IDE (free)

How to use
initialize
method
in
org.quartz.plugins.SchedulerPluginWithUserTransactionSupport

Best Java code snippets using org.quartz.plugins.SchedulerPluginWithUserTransactionSupport.initialize (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Called during creation of the <code>Scheduler</code> in order to give
 * the <code>SchedulerPlugin</code> a chance to initialize.
 * </p>
 * 
 * @throws org.quartz.SchedulerConfigException
 *           if there is an error initializing.
 */
public void initialize(String name, final Scheduler scheduler, ClassLoadHelper schedulerFactoryClassLoadHelper)
  throws SchedulerException {
  super.initialize(name, scheduler);
  this.classLoadHelper = schedulerFactoryClassLoadHelper;
  
  getLog().info("Registering Quartz Job Initialization Plug-in.");
  
  // Create JobFile objects
  StringTokenizer stok = new StringTokenizer(fileNames, FILE_NAME_DELIMITERS);
  while (stok.hasMoreTokens()) {
    final String fileName = stok.nextToken();
    final JobFile jobFile = new JobFile(fileName);
    jobFiles.put(fileName, jobFile);         
  }
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Called during creation of the <code>Scheduler</code> in order to give
 * the <code>SchedulerPlugin</code> a chance to initialize.
 * </p>
 * 
 * @throws org.quartz.SchedulerConfigException
 *           if there is an error initializing.
 */
public void initialize(String name, final Scheduler scheduler, ClassLoadHelper schedulerFactoryClassLoadHelper)
  throws SchedulerException {
  super.initialize(name, scheduler);
  this.classLoadHelper = schedulerFactoryClassLoadHelper;
  
  getLog().info("Registering Quartz Job Initialization Plug-in.");
  
  // Create JobFile objects
  StringTokenizer stok = new StringTokenizer(fileNames, FILE_NAME_DELIMITERS);
  while (stok.hasMoreTokens()) {
    final String fileName = stok.nextToken();
    final JobFile jobFile = new JobFile(fileName);
    jobFiles.put(fileName, jobFile);         
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Called during creation of the <code>Scheduler</code> in order to give
 * the <code>SchedulerPlugin</code> a chance to initialize.
 * </p>
 * 
 * @throws org.quartz.SchedulerConfigException
 *           if there is an error initializing.
 */
public void initialize(String name, final Scheduler scheduler)
  throws SchedulerException {
  super.initialize(name, scheduler);
  
  classLoadHelper = new CascadingClassLoadHelper();
  classLoadHelper.initialize();
  
  getLog().info("Registering Quartz Job Initialization Plug-in.");
  
  // Create JobFile objects
  StringTokenizer stok = new StringTokenizer(fileNames, FILE_NAME_DELIMITERS);
  while (stok.hasMoreTokens()) {
    final String fileName = stok.nextToken();
    final JobFile jobFile = new JobFile(fileName);
    jobFiles.put(fileName, jobFile);         
  }
}
origin: quartz/quartz-all

/**
 * <p>
 * Called during creation of the <code>Scheduler</code> in order to give
 * the <code>SchedulerPlugin</code> a chance to initialize.
 * </p>
 * 
 * @throws org.quartz.SchedulerConfigException
 *           if there is an error initializing.
 */
public void initialize(String name, final Scheduler scheduler)
  throws SchedulerException {
  super.initialize(name, scheduler);
  
  classLoadHelper = new CascadingClassLoadHelper();
  classLoadHelper.initialize();
  
  getLog().info("Registering Quartz Job Initialization Plug-in.");
  
  // Create JobFile objects
  StringTokenizer stok = new StringTokenizer(fileNames, FILE_NAME_DELIMITERS);
  while (stok.hasMoreTokens()) {
    final String fileName = stok.nextToken();
    final JobFile jobFile = new JobFile(fileName);
    jobFiles.put(fileName, jobFile);         
  }
}
org.quartz.pluginsSchedulerPluginWithUserTransactionSupportinitialize

Popular methods of SchedulerPluginWithUserTransactionSupport

  • getLog
    Get the commons Logger for this class.
  • getName
    Get the name of this plugin. Set as part of initialize().
  • resolveUserTransaction
    If the given UserTransaction is not null, it is committed/rolledback, and then returned to the UserT
  • shutdown
    Called in order to inform the SchedulerPlugin that it should free up all of it's resources because
  • start
    Called when the associated Scheduler is started, in order to let the plug-in know it can now make c
  • startUserTransaction
    If wrapInUserTransaction is true, starts a new UserTransaction and returns it. Otherwise, or if esta

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • JPanel (javax.swing)
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