joinhandler.java
来自「一个java工作流引擎」· Java 代码 · 共 18 行
JAVA
18 行
package org.jbpm.delegation;
import org.jbpm.*;
/**
* allows to specify all kinds of {@link org.jbpm.model.definition.Join}-behaviour,
* including run-time process-specific behaviour.
*/
public interface JoinHandler {
/**
* @param joinContext is the object that allows the Joiner-implementator to
* access the process-context in which this join is executed.
*/
void join( JoinContext joinContext ) throws ExecutionException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?