| java.lang.Object com.caucho.tools.profiler.ProfilerPoint
All known Subclasses: com.caucho.tools.profiler.CategorizingProfilerPoint,
ProfilerPoint | public class ProfilerPoint implements Comparable<ProfilerPoint>(Code) | | Represents a unique point at which profiling is performed. Obtained from a
ProfilerManager . Equality between two instances of ProfilerPoint is
based on the name only.
|
getChildren | List<ProfilerPoint> getChildren()(Code) | | Caller must synchronize on this ProfilerPoint while it uses the returned
map.
|
getInvocationCount | public long getInvocationCount()(Code) | | |
getMaxTime | public long getMaxTime()(Code) | | Minimum time for this node in nanoseconds, does not include
the time for child nodes.
|
getMinTime | public long getMinTime()(Code) | | Minimum time for this node in nanoseconds, does not include
the time for child nodes.
|
getTime | public long getTime()(Code) | | Time for this node in nanoseconds, does not include the time for child
nodes.
|
hashCode | public int hashCode()(Code) | | |
incrementInvocationCount | void incrementInvocationCount()(Code) | | |
reset | void reset()(Code) | | Drop all of the children
|
update | void update(long totalTime)(Code) | | Increment the invocation count and add time.
Parameters: totalTime - |
|
|