processinvocationhandler.java

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

JAVA
18
字号
package org.jbpm.delegation;

import org.jbpm.*;
import org.jbpm.model.execution.*;

/**
 * handles the launching and the processing of the results of a sub-process inside a process-state.
 */
public interface ProcessInvocationHandler {

  ProcessInstance startSubProcess( ProcessInvocationContext processInvocationContext ) throws ExecutionException;

  /**
   * @return the transitionName to be taken from the process-state.
   */
  String handleSubProcessEnd( ExecutionContext superContext, ExecutionContext subContext );
}

⌨️ 快捷键说明

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