⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 schedulerserver.java

📁 一个java工作流引擎
💻 JAVA
字号:
package org.jbpm.scheduler;

/**
 * is the interface towards the external client that provides the server with 
 * a request-thread to execute the scheduled jobs.  jBpm is usually executed 
 * within a servlet- or ejb-container.  In such containers you shouldn't mess with 
 * threads.  Therefor, we have an external application client that will provide 
 * the server with a request-thread to execute the scheduled jobs.
 */
public interface SchedulerServer {
  
  /**
   * executes all jobs that are due.
   * @return the number of milliseconds to wait till the next check should be done.
   */
  long checkJobs();
  
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -