Package org.openjdk.jmh.runner.format
Class SilentFormat
java.lang.Object
org.openjdk.jmh.runner.format.AbstractOutputFormat
org.openjdk.jmh.runner.format.SilentFormat
- All Implemented Interfaces:
OutputFormat
Silent format, does nothing.
-
Field Summary
Fields inherited from class org.openjdk.jmh.runner.format.AbstractOutputFormat
out, verbose
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
endBenchmark
(BenchmarkResult result) Format for end-of-benchmark.void
endRun
(Collection<RunResult> results) Format for end-of-benchmark.void
iteration
(BenchmarkParams benchmarkParams, IterationParams params, int iteration) Format for iteration start.void
iterationResult
(BenchmarkParams benchmarkParams, IterationParams params, int iteration, IterationResult data) Format for end-of-iteration.void
void
void
startBenchmark
(BenchmarkParams benchmarkParams) Format for start-of-benchmark output.void
startRun()
Format for start-of-benchmark output.void
Methods inherited from class org.openjdk.jmh.runner.format.AbstractOutputFormat
close, flush, write, write
-
Constructor Details
-
SilentFormat
-
-
Method Details
-
startRun
public void startRun()Description copied from interface:OutputFormat
Format for start-of-benchmark output. -
endRun
Description copied from interface:OutputFormat
Format for end-of-benchmark.- Parameters:
results
- benchmark results
-
startBenchmark
Description copied from interface:OutputFormat
Format for start-of-benchmark output.- Parameters:
benchmarkParams
- benchmark params
-
endBenchmark
Description copied from interface:OutputFormat
Format for end-of-benchmark.- Parameters:
result
- statistics of the run
-
iteration
Description copied from interface:OutputFormat
Format for iteration start.- Parameters:
benchmarkParams
- benchmark parametersparams
- iteration params in useiteration
- iteration-number
-
iterationResult
public void iterationResult(BenchmarkParams benchmarkParams, IterationParams params, int iteration, IterationResult data) Description copied from interface:OutputFormat
Format for end-of-iteration.- Parameters:
benchmarkParams
- name of benchmarkparams
- iteration params in useiteration
- iteration-numberdata
- result of iteration
-
print
- Specified by:
print
in interfaceOutputFormat
- Overrides:
print
in classAbstractOutputFormat
-
println
- Specified by:
println
in interfaceOutputFormat
- Overrides:
println
in classAbstractOutputFormat
-
verbosePrintln
- Specified by:
verbosePrintln
in interfaceOutputFormat
- Overrides:
verbosePrintln
in classAbstractOutputFormat
-