Class StatementLogPerfTestWatcher
java.lang.Object
org.camunda.bpm.qa.performance.engine.sqlstatementlog.StatementLogPerfTestWatcher
- All Implemented Interfaces:
PerfTestWatcher
PerfTestWatcher
performing statement logging.- Author:
- Daniel Meyer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterPass
(PerfTestPass pass) Invoked after a performance test pass is ended.void
afterRun
(PerfTest test, PerfTestRun run) Invoked after a performance test run is ended.void
afterStep
(PerfTestStep step, PerfTestRun run) Invoked after aPerfTestRun
ends an individual step in the performance test.void
beforePass
(PerfTestPass pass) Invoked before a performance test pass is started.void
beforeRun
(PerfTest test, PerfTestRun run) Invoked before a performance test run is started.void
beforeStep
(PerfTestStep step, PerfTestRun run) Invoked before aPerfTestRun
starts an individual step in the performance test.
-
Constructor Details
-
StatementLogPerfTestWatcher
public StatementLogPerfTestWatcher()
-
-
Method Details
-
beforePass
Description copied from interface:PerfTestWatcher
Invoked before a performance test pass is started.- Specified by:
beforePass
in interfacePerfTestWatcher
- Parameters:
pass
- the currentPerfTestPass
-
beforeRun
Description copied from interface:PerfTestWatcher
Invoked before a performance test run is started.- Specified by:
beforeRun
in interfacePerfTestWatcher
- Parameters:
test
- thePerfTest
about to be executedrun
- the currentPerfTestRun
-
beforeStep
Description copied from interface:PerfTestWatcher
Invoked before aPerfTestRun
starts an individual step in the performance test. This method is called by the sameThread
which will execute the step.- Specified by:
beforeStep
in interfacePerfTestWatcher
- Parameters:
step
- thePerfTestStep
about to be executed.run
- the currentPerfTestRun
-
afterStep
Description copied from interface:PerfTestWatcher
Invoked after aPerfTestRun
ends an individual step in the performance test. This method is called by the sameThread
which executed the step.- Specified by:
afterStep
in interfacePerfTestWatcher
- Parameters:
step
- thePerfTestStep
which has been executed.run
- the currentPerfTestRun
-
afterRun
Description copied from interface:PerfTestWatcher
Invoked after a performance test run is ended.- Specified by:
afterRun
in interfacePerfTestWatcher
- Parameters:
test
- thePerfTest
about to be executedrun
- the currentPerfTestRun
-
afterPass
Description copied from interface:PerfTestWatcher
Invoked after a performance test pass is ended.- Specified by:
afterPass
in interfacePerfTestWatcher
- Parameters:
pass
- the currentPerfTestPass
-