当前位置: 首页>>代码示例>>Java>>正文


Java ExecutionImpl类代码示例

本文整理汇总了Java中org.activiti.engine.impl.pvm.runtime.ExecutionImpl的典型用法代码示例。如果您正苦于以下问题:Java ExecutionImpl类的具体用法?Java ExecutionImpl怎么用?Java ExecutionImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ExecutionImpl类属于org.activiti.engine.impl.pvm.runtime包,在下文中一共展示了ExecutionImpl类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: dumpExecutionVariables

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
private void dumpExecutionVariables(String executionId, DelegateExecution delegateExecution, Execution execution, Set<String> variablesSeen, RuntimeService runtimeService) {
	Map<String, Object> variablesLocal = runtimeService.getVariablesLocal(executionId);
	LOGGER.trace("Execution id={} ({} variables); class={}/{}", executionId, variablesLocal.size(),
			delegateExecution != null ? delegateExecution.getClass().getName() : null,
			execution != null ? execution.getClass().getName() : null);
	TreeSet<String> names = new TreeSet<>(variablesLocal.keySet());
	names.forEach(n -> LOGGER.trace(" - {} = {} {}", n, variablesLocal.get(n), variablesSeen.contains(n) ? "(dup)":""));
	variablesSeen.addAll(variablesLocal.keySet());
	if (delegateExecution instanceof ExecutionEntity) {
		ExecutionEntity executionEntity = (ExecutionEntity) delegateExecution;
		if (executionEntity.getParent() != null) {
			dumpExecutionVariables(executionEntity.getParentId(), executionEntity.getParent(), null, variablesSeen,
					runtimeService);
		}
	} else if (delegateExecution instanceof ExecutionImpl) {
		ExecutionImpl executionImpl = (ExecutionImpl) delegateExecution;
		if (executionImpl.getParent() != null) {
			dumpExecutionVariables(executionImpl.getParentId(), executionImpl.getParent(), null, variablesSeen,
					runtimeService);
		}
	} else {
		Execution execution1 = runtimeService.createExecutionQuery().executionId(executionId).singleResult();
		if (execution1 == null) {
			LOGGER.trace("Execution with id {} was not found.", executionId);
		} else if (execution1.getParentId() != null) {
			Execution execution2 = runtimeService.createExecutionQuery().executionId(execution1.getParentId()).singleResult();
			dumpExecutionVariables(execution.getParentId(), null, execution2, variablesSeen, runtimeService);
		}
	}
}
 
开发者ID:Pardus-Engerek,项目名称:engerek,代码行数:31,代码来源:DumpVariables.java

示例2: testActivityEndDestroysEventScopes

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
/**
 * 
 * create evt scope --+ | v
 * 
 * +------------------------------+ | embedded subprocess | +-----+ | +-----------+ +---------+ | +----+ +---+ |start|-->| |startInside|-->|endInside| |-->|wait|-->|end| +-----+ | +-----------+
 * +---------+ | +----+ +---+ +------------------------------+
 * 
 * ^ | destroy evt scope --+
 * 
 */
public void testActivityEndDestroysEventScopes() {
    PvmProcessDefinition processDefinition = new ProcessDefinitionBuilder()
            .createActivity("start")
            .initial()
            .behavior(new Automatic())
            .transition("embeddedsubprocess")
            .endActivity()
            .createActivity("embeddedsubprocess")
            .scope()
            .behavior(new EventScopeCreatingSubprocess())
            .createActivity("startInside")
            .behavior(new Automatic())
            .transition("endInside")
            .endActivity()
            .createActivity("endInside")
            .behavior(new Automatic())
            .endActivity()
            .transition("wait")
            .endActivity()
            .createActivity("wait")
            .behavior(new WaitState())
            .transition("end")
            .endActivity()
            .createActivity("end")
            .behavior(new Automatic())
            .endActivity()
            .buildProcessDefinition();

    PvmProcessInstance processInstance = processDefinition.createProcessInstance();
    processInstance.start();

    boolean eventScopeFound = false;
    List<ExecutionImpl> executions = ((ExecutionImpl) processInstance).getExecutions();
    for (ExecutionImpl executionImpl : executions) {
        if (executionImpl.isEventScope()) {
            eventScopeFound = true;
            break;
        }
    }

    assertTrue(eventScopeFound);

    processInstance.signal(null, null);

    assertTrue(processInstance.isEnded());

}
 
开发者ID:flowable,项目名称:flowable-engine,代码行数:58,代码来源:PvmEventScopesTest.java

示例3: newProcessInstance

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
protected InterpretableExecution newProcessInstance(ActivityImpl startActivity) {
    return new ExecutionImpl(startActivity);
}
 
开发者ID:flowable,项目名称:flowable-engine,代码行数:4,代码来源:ProcessDefinitionImpl.java

示例4: newProcessInstance

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
protected InterpretableExecution newProcessInstance() {
  return new ExecutionImpl();
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:4,代码来源:ProcessDefinitionImpl.java

示例5: newProcessInstance

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
protected InterpretableExecution newProcessInstance(ActivityImpl startActivity) {
  return new ExecutionImpl(startActivity);
}
 
开发者ID:iotsap,项目名称:FiWare-Template-Handler,代码行数:4,代码来源:ProcessDefinitionImpl.java

示例6: testActivityEndDestroysEventScopes

import org.activiti.engine.impl.pvm.runtime.ExecutionImpl; //导入依赖的package包/类
/** 
 * 
 *                       create evt scope --+
 *                                          |   
 *                                          v                                        
 *                                          
 *           +------------------------------+
 *           | embedded subprocess          |
 * +-----+   |  +-----------+   +---------+ |   +----+   +---+
 * |start|-->|  |startInside|-->|endInside| |-->|wait|-->|end|
 * +-----+   |  +-----------+   +---------+ |   +----+   +---+
 *           +------------------------------+
 *           
 *                                                           ^  
 *                                                           |
 *                                       destroy evt scope --+  
 *           
 */
public void testActivityEndDestroysEventScopes() {
    PvmProcessDefinition processDefinition = new ProcessDefinitionBuilder()
    .createActivity("start")
      .initial()
      .behavior(new Automatic())
      .transition("embeddedsubprocess")
    .endActivity()
    .createActivity("embeddedsubprocess")
      .scope()
      .behavior(new EventScopeCreatingSubprocess())
      .createActivity("startInside")
        .behavior(new Automatic())
        .transition("endInside")
      .endActivity()
       .createActivity("endInside")
        .behavior(new Automatic())
      .endActivity()       
    .transition("wait")
    .endActivity()
    .createActivity("wait")
      .behavior(new WaitState())
      .transition("end")
    .endActivity()
    .createActivity("end")
      .behavior(new Automatic())
    .endActivity()
  .buildProcessDefinition();
  
  PvmProcessInstance processInstance = processDefinition.createProcessInstance(); 
  processInstance.start();
  
  boolean eventScopeFound = false;
  List<ExecutionImpl> executions = ((ExecutionImpl)processInstance).getExecutions();
  for (ExecutionImpl executionImpl : executions) {
    if(executionImpl.isEventScope()) {
      eventScopeFound = true;
      break;
    }
  }
  
  assertTrue(eventScopeFound);
  
  processInstance.signal(null, null);

  assertTrue(processInstance.isEnded());
       
}
 
开发者ID:iotsap,项目名称:FiWare-Template-Handler,代码行数:66,代码来源:PvmEventScopesTest.java


注:本文中的org.activiti.engine.impl.pvm.runtime.ExecutionImpl类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。