com.threerings.util
Class MethodProfiler.Result

java.lang.Object
  extended by com.threerings.util.MethodProfiler.Result
Enclosing class:
MethodProfiler

public static class MethodProfiler.Result
extends Object

The results of sampling for a single method.


Field Summary
 double averageTime
          Average time spent in the method.
 int numSamples
          Number of method calls sampled.
 double standardDeviation
          Standard deviation from the average.
 
Method Summary
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

numSamples

public final int numSamples
Number of method calls sampled.


averageTime

public final double averageTime
Average time spent in the method.


standardDeviation

public final double standardDeviation
Standard deviation from the average.

Method Detail

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2012. All Rights Reserved.