Class 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)  
    • 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
    • Constructor Detail

      • BenchmarkTaskResult

        public BenchmarkTaskResult​(long allOperations,
                                   long measuredOperations)
    • Method Detail

      • add

        public void add​(Result result)
      • getResults

        public java.util.Collection<Result> getResults()
      • getAllOps

        public long getAllOps()
      • getMeasuredOps

        public long getMeasuredOps()