Class StatementLogPerfTestWatcher
- java.lang.Object
-
- org.camunda.bpm.qa.performance.engine.sqlstatementlog.StatementLogPerfTestWatcher
-
- All Implemented Interfaces:
PerfTestWatcher
public class StatementLogPerfTestWatcher extends java.lang.Object implements PerfTestWatcher
PerfTestWatcherperforming statement logging.- Author:
- Daniel Meyer
-
-
Constructor Summary
Constructors Constructor Description StatementLogPerfTestWatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPass(PerfTestPass pass)Invoked after a performance test pass is ended.voidafterRun(PerfTest test, PerfTestRun run)Invoked after a performance test run is ended.voidafterStep(PerfTestStep step, PerfTestRun run)Invoked after aPerfTestRunends an individual step in the performance test.voidbeforePass(PerfTestPass pass)Invoked before a performance test pass is started.voidbeforeRun(PerfTest test, PerfTestRun run)Invoked before a performance test run is started.voidbeforeStep(PerfTestStep step, PerfTestRun run)Invoked before aPerfTestRunstarts an individual step in the performance test.
-
-
-
Method Detail
-
beforePass
public void beforePass(PerfTestPass pass)
Description copied from interface:PerfTestWatcherInvoked before a performance test pass is started.- Specified by:
beforePassin interfacePerfTestWatcher- Parameters:
pass- the currentPerfTestPass
-
beforeRun
public void beforeRun(PerfTest test, PerfTestRun run)
Description copied from interface:PerfTestWatcherInvoked before a performance test run is started.- Specified by:
beforeRunin interfacePerfTestWatcher- Parameters:
test- thePerfTestabout to be executedrun- the currentPerfTestRun
-
beforeStep
public void beforeStep(PerfTestStep step, PerfTestRun run)
Description copied from interface:PerfTestWatcherInvoked before aPerfTestRunstarts an individual step in the performance test. This method is called by the sameThreadwhich will execute the step.- Specified by:
beforeStepin interfacePerfTestWatcher- Parameters:
step- thePerfTestStepabout to be executed.run- the currentPerfTestRun
-
afterStep
public void afterStep(PerfTestStep step, PerfTestRun run)
Description copied from interface:PerfTestWatcherInvoked after aPerfTestRunends an individual step in the performance test. This method is called by the sameThreadwhich executed the step.- Specified by:
afterStepin interfacePerfTestWatcher- Parameters:
step- thePerfTestStepwhich has been executed.run- the currentPerfTestRun
-
afterRun
public void afterRun(PerfTest test, PerfTestRun run)
Description copied from interface:PerfTestWatcherInvoked after a performance test run is ended.- Specified by:
afterRunin interfacePerfTestWatcher- Parameters:
test- thePerfTestabout to be executedrun- the currentPerfTestRun
-
afterPass
public void afterPass(PerfTestPass pass)
Description copied from interface:PerfTestWatcherInvoked after a performance test pass is ended.- Specified by:
afterPassin interfacePerfTestWatcher- Parameters:
pass- the currentPerfTestPass
-
-