forkhandler.java

来自「一个java工作流引擎」· Java 代码 · 共 20 行

JAVA
20
字号
package org.jbpm.delegation;

import org.jbpm.*;

/**
 * starts multiple concurrent paths of execution. 
 * Note that if no ForkHandler is specified in a fork, the default
 * behaviour is to fork one child-token of the token arriving in the
 * fork on each of the transitions leaving the fork.
 */
public interface ForkHandler {

  /**
   * is called by jbpm when execution arrives in a flow.
   * @param forkContext is the context that provides the API for creating the tokens.
   */
  void fork( ForkContext forkContext ) throws ExecutionException;

}

⌨️ 快捷键说明

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