org.quartz.xml.XMLSchedulingDataProcessor.processFile()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(137)

本文整理了Java中org.quartz.xml.XMLSchedulingDataProcessor.processFile()方法的一些代码示例,展示了XMLSchedulingDataProcessor.processFile()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSchedulingDataProcessor.processFile()方法的具体详情如下:
包路径:org.quartz.xml.XMLSchedulingDataProcessor
类名称:XMLSchedulingDataProcessor
方法名:processFile

XMLSchedulingDataProcessor.processFile介绍

[英]Process the xml file in the default location (a file named "quartz_jobs.xml" in the current working directory).
[中]在默认位置处理xml文件(当前工作目录中名为“quartz_jobs.xml”的文件)。

代码示例

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the default location (a file named
 * "quartz_jobs.xml" in the current working directory).
 *  
 */
protected void processFile() throws Exception {
  processFile(QUARTZ_XML_DEFAULT_FILE_NAME);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the default location (a file named
 * "quartz_jobs.xml" in the current working directory).
 *  
 */
protected void processFile() throws Exception {
  processFile(QUARTZ_XML_DEFAULT_FILE_NAME);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file named <code>fileName</code>.
 * 
 * @param fileName
 *          meta data file name.
 */
protected void processFile(String fileName) throws Exception {
  processFile(fileName, getSystemIdForFileName(fileName));
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file named <code>fileName</code>.
 * 
 * @param fileName
 *          meta data file name.
 */
protected void processFile(String fileName) throws Exception {
  processFile(fileName, getSystemIdForFileName(fileName));
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the given location, and schedule all of the
 * jobs defined within it.
 * 
 * @param fileName
 *          meta data file name.
 */
public void processFileAndScheduleJobs(String fileName, String systemId, Scheduler sched) throws Exception {
  processFile(fileName, systemId);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the given location, and schedule all of the
 * jobs defined within it.
 * 
 * @param fileName
 *          meta data file name.
 */
public void processFileAndScheduleJobs(String fileName, String systemId, Scheduler sched) throws Exception {
  processFile(fileName, systemId);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the default location, and schedule all of the
 * jobs defined within it.
 * 
 * <p>Note that we will set overWriteExistingJobs after the default xml is parsed. 
 */
public void processFileAndScheduleJobs(Scheduler sched,
    boolean overWriteExistingJobs) throws Exception {
  String fileName = QUARTZ_XML_DEFAULT_FILE_NAME;
  processFile(fileName, getSystemIdForFileName(fileName));
  // The overWriteExistingJobs flag was set by processFile() -> prepForProcessing(), then by xml parsing, and then now
  // we need to reset it again here by this method parameter to override it.
  setOverWriteExistingData(overWriteExistingJobs);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * Process the xml file in the default location, and schedule all of the
 * jobs defined within it.
 * 
 * <p>Note that we will set overWriteExistingJobs after the default xml is parsed. 
 */
public void processFileAndScheduleJobs(Scheduler sched,
    boolean overWriteExistingJobs) throws Exception {
  String fileName = QUARTZ_XML_DEFAULT_FILE_NAME;
  processFile(fileName, getSystemIdForFileName(fileName));
  // The overWriteExistingJobs flag was set by processFile() -> prepForProcessing(), then by xml parsing, and then now
  // we need to reset it again here by this method parameter to override it.
  setOverWriteExistingData(overWriteExistingJobs);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
}

相关文章