项 | 说明 |
---|---|
抽象类 | ExecuteListener |
接口 | ExecuteListenerInterface |
返回值 | 无 |
异常 | -如抛出异常时,异常被包装成结果返回,后继执行被中断 |
1.使用流程运维管理时
2.使用SDK API时
//挂起任务
SDK.getTaskAPI().suspend(taskInst);
package com.actionsoft.apps.poc.api.local.process.listener.usertask;
import com.actionsoft.bpms.bpmn.engine.core.delegate.ProcessExecutionContext;
import com.actionsoft.bpms.bpmn.engine.listener.ExecuteListener;
public class Test_TASK_SUSPEND extends ExecuteListener {
public String getDescription() {
return "测试用例";
}
public void execute(ProcessExecutionContext ctx) throws Exception {
info("任务挂起后事件被触发-->" + ctx.getTaskInstance());
}
}
上述源码示例可与我们技术支持联系,获得com.actionsoft.apps.poc.api应用