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

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

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

XMLSchedulingDataProcessor.scheduleJobs介绍

[英]Schedules the given sets of jobs and triggers.
[中]

代码示例

代码示例来源: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 xmlfile named <code>fileName</code> with the given system
 * ID.
 * 
 * @param stream
 *          an input stream containing the xml content.
 * @param systemId
 *          system ID.
 */
public void processStreamAndScheduleJobs(InputStream stream, String systemId, Scheduler sched)
  throws ValidationException, ParserConfigurationException,
    SAXException, XPathException, IOException, SchedulerException,
    ClassNotFoundException, ParseException {
  prepForProcessing();
  log.info("Parsing XML from stream with systemId: " + systemId);
  InputSource is = new InputSource(stream);
  is.setSystemId(systemId);
  process(is);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
  maybeThrowValidationException();
}

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

/**
 * Process the xmlfile named <code>fileName</code> with the given system
 * ID.
 * 
 * @param stream
 *          an input stream containing the xml content.
 * @param systemId
 *          system ID.
 */
public void processStreamAndScheduleJobs(InputStream stream, String systemId, Scheduler sched)
  throws ValidationException, ParserConfigurationException,
    SAXException, XPathException, IOException, SchedulerException,
    ClassNotFoundException, ParseException {
  prepForProcessing();
  log.info("Parsing XML from stream with systemId: " + systemId);
  InputSource is = new InputSource(stream);
  is.setSystemId(systemId);
  process(is);
  executePreProcessCommands(sched);
  scheduleJobs(sched);
  maybeThrowValidationException();
}

代码示例来源: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);
}

相关文章