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 TypeMethodDescriptionvoidDeprecated.Benchmark has ended.voidDeprecated.voidDeprecated.voidmetricFailed(Product product, Exception e) Deprecated.voidmetricRecorded(Product product, double result) Deprecated.voidDeprecated.Benchmark has started.voidstartMetric(Metric metric) Deprecated.voidstartTarget(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
-
endTarget
Deprecated. -
endMetric
Deprecated. -
endBenchmark
void endBenchmark()Deprecated.Benchmark has ended. This will always be called ONCE (and only once) AFTER everything else.
-