Interface Reporter
- All Known Implementing Classes:
HtmlReporter
,MultiReporter
,TextReporter
public interface Reporter
Deprecated.
As of 1.4.9 use JMH instead
A listener to what the
Harness
is doing that should report the results.
The sequence of methods is:
startBenchmark, ( startMetric, ( startTarget, ( metricRecorded | metricFailed ), endTarget ) * , endMetric ) * , endBenchmark
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Benchmark has ended.void
Deprecated.void
Deprecated.void
metricFailed
(Product product, Exception e) Deprecated.void
metricRecorded
(Product product, double result) Deprecated.void
Deprecated.Benchmark has started.void
startMetric
(Metric metric) Deprecated.void
startTarget
(Target target) Deprecated.
-
Method Details
-
startBenchmark
void startBenchmark()Deprecated.Benchmark has started. This will always be called ONCE (and only once) BEFORE everything else. -
startMetric
Deprecated. -
startTarget
Deprecated. -
metricRecorded
Deprecated. -
metricFailed
Deprecated. -
endTarget
Deprecated. -
endMetric
Deprecated. -
endBenchmark
void endBenchmark()Deprecated.Benchmark has ended. This will always be called ONCE (and only once) AFTER everything else.
-