Uses of Class
bb.util.Benchmark.Params

Packages that use Benchmark.Params
bb.util Provides miscellaneous utility classes and interfaces. 
 

Uses of Benchmark.Params in bb.util
 

Fields in bb.util declared as Benchmark.Params
protected  Benchmark.Params Benchmark.params
          Controls how this instance's benchmarking is done.
 

Fields in bb.util with type parameters of type Benchmark.Params
protected static Map<Benchmark.Params,Benchmark.Stats> Benchmark.noiseMap
          Maps a Params instance to the block statistics that result from benchmarking Benchmark.noiseTask.
 

Methods in bb.util with parameters of type Benchmark.Params
protected  void Benchmark.perform(Object task, Benchmark.Params params)
          Carries out the benchmarking of task according to the specifications found in params.
 

Constructors in bb.util with parameters of type Benchmark.Params
Benchmark(Callable<T> task, Benchmark.Params params)
          Constructor that measures the execution time of a Callable task.
Benchmark(Runnable task, Benchmark.Params params)
          Identical to the Callable constructor except that task is a Runnable.