Package org.openjdk.jmh.results
Class BenchmarkTaskResult
- java.lang.Object
-
- org.openjdk.jmh.results.BenchmarkTaskResult
-
public class BenchmarkTaskResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private long
allOperations
Total benchmark ops done.private long
measuredOperations
Measured benchmark ops done: total without sync iterations.private java.util.Collection<Result>
results
-
Constructor Summary
Constructors Constructor Description BenchmarkTaskResult(long allOperations, long measuredOperations)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Result result)
long
getAllOps()
long
getMeasuredOps()
java.util.Collection<Result>
getResults()
-
-
-
Field Detail
-
allOperations
private final long allOperations
Total benchmark ops done.
-
measuredOperations
private final long measuredOperations
Measured benchmark ops done: total without sync iterations.
-
results
private final java.util.Collection<Result> results
-
-