本文整理汇总了Java中org.jbpm.workflow.instance.WorkflowProcessInstance类的典型用法代码示例。如果您正苦于以下问题:Java WorkflowProcessInstance类的具体用法?Java WorkflowProcessInstance怎么用?Java WorkflowProcessInstance使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WorkflowProcessInstance类属于org.jbpm.workflow.instance包,在下文中一共展示了WorkflowProcessInstance类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTimerInstance
import org.jbpm.workflow.instance.WorkflowProcessInstance; //导入依赖的package包/类
private TimerNodeInstance getTimerInstance(WorkflowProcessInstance pi) {
if(pi == null ) {
throw new IllegalArgumentException(
"Couldn't find process instance.");
}
TimerNodeInstance oldTimerInstance = null;
for (NodeInstance n : pi.getNodeInstances()) {
if (n instanceof TimerNodeInstance)
oldTimerInstance = (TimerNodeInstance) n;
}
if (oldTimerInstance == null) {
throw new IllegalArgumentException(
"Process is NOT stopped on a timer instance");
}
return oldTimerInstance;
}
示例2: setAsTriggered
import org.jbpm.workflow.instance.WorkflowProcessInstance; //导入依赖的package包/类
public void setAsTriggered(String identifier, long piid) {
RuntimeEngine runtimeEngine = getRuntimeEngine(identifier, piid);
KieSession kSession = runtimeEngine.getKieSession();
WorkflowProcessInstance pi = (WorkflowProcessInstance) kSession
.getProcessInstance(piid);
TimerNodeInstance oldTimerInstance = getTimerInstance(pi);
oldTimerInstance.triggerCompleted(true);
dispose(runtimeEngine);
}
示例3: cancelTimer
import org.jbpm.workflow.instance.WorkflowProcessInstance; //导入依赖的package包/类
public void cancelTimer(String identifier, long piid) {
RuntimeEngine runtimeEngine = getRuntimeEngine(identifier, piid);
KieSession kSession = runtimeEngine.getKieSession();
WorkflowProcessInstance pi = (WorkflowProcessInstance) kSession
.getProcessInstance(piid);
TimerNodeInstance timerInstance = getTimerInstance(pi);
TimerManager tm = getTimerManager(kSession);
tm.cancelTimer(timerInstance.getId());
dispose(runtimeEngine);
}
示例4: updateTimerNode
import org.jbpm.workflow.instance.WorkflowProcessInstance; //导入依赖的package包/类
public void updateTimerNode(Long piid, String identifier, long delay,
long period, int repeatLimit) {
RuntimeEngine runtimeEngine = getRuntimeEngine(identifier, piid);
KieSession kSession = runtimeEngine.getKieSession();
WorkflowProcessInstance pi = (WorkflowProcessInstance) kSession
.getProcessInstance(piid);
TimerNodeInstance timerInstance = getTimerInstance(pi);
UpdateTimerCommand cmd = new UpdateTimerCommand(piid, timerInstance
.getTimerNode().getName(), delay, period, repeatLimit);
kSession.execute(cmd);
dispose(runtimeEngine);
}