Package org.camunda.bpm.qa.performance.engine.framework

Examples of org.camunda.bpm.qa.performance.engine.framework.PerfTestRunContext


*
*/
public class TaskIdRecorder implements TaskListener {

  public void notify(DelegateTask delegateTask) {
    PerfTestRunContext perfTestRunContext = PerfTestRunContext.currentContext.get();
    if(perfTestRunContext != null) {
      perfTestRunContext.setVariable(TASK_ID, delegateTask.getId());
    }
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.qa.performance.engine.framework.PerfTestRunContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.