Examples of PerfTestRunContext


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
Copyright © 2018 www.massapi.com. 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.