Uses of Class
io.nosqlbench.nb.api.testutils.Result

Packages that use Result 
Package Description
io.nosqlbench.nb.api.testutils  
  • Uses of Result in io.nosqlbench.nb.api.testutils

    Methods in io.nosqlbench.nb.api.testutils that return Result 
    Modifier and Type Method Description
    Result Perf.getLastResult()  
    Methods in io.nosqlbench.nb.api.testutils that return types with arguments of type Result 
    Modifier and Type Method Description
    java.util.Iterator<Result> Perf.iterator()  
    Methods in io.nosqlbench.nb.api.testutils with parameters of type Result 
    Modifier and Type Method Description
    Perf Perf.add​(Result result)
    Add a test result to this performance collector.
    Method parameters in io.nosqlbench.nb.api.testutils with type arguments of type Result 
    Modifier and Type Method Description
    double[] Perf.getDeltas​(java.util.function.Function<Result,​java.lang.Double> resultProperty)
    Get the differences between successive test runs for a given property.
    double Perf.getMaximumDelta​(java.util.function.Function<Result,​java.lang.Double> resultProperty, int count)
    For the most recent test runs, measure the maximum difference in a given property.
    boolean Perf.isConverged​(java.util.function.Function<Result,​java.lang.Double> resultProperty, double withinMargin, int count)
    Extract the double field value from the last results and return whether or not they are within some fractional margin between the minimum and maximum seen value.
    Perf Perf.sort​(java.util.function.Function<Result,​java.lang.Double> resultProperty)
    Sort the internal results according to some property
    static java.util.List<java.lang.String> Result.toString​(java.util.List<Result> results)  
    java.lang.String Perf.toStringDelta​(java.util.function.Function<Result,​java.lang.Double> resultProperty, java.lang.String deltaDescription, int... lastN)
    Summarize the last results in a tabular format, with row-by-row delta included for a given property.