sleep.runtime

Class ScriptInstance.ProfilerStatistic

public static class ScriptInstance.ProfilerStatistic extends Object implements Comparable, Serializable

A container for a profile statistic about a sleep function
Field Summary
longcalls
the total number of times this function has been called
StringfunctionName
the name of the function call
longticks
the total number of ticks consumed by this function call
Method Summary
intcompareTo(Object o)
used to compare this statistic to other statistics for the sake of sorting
StringtoString()
returns a string in the form of (total time used in seconds)s (total calls made) @(line number) (function description)

Field Detail

calls

public long calls
the total number of times this function has been called

functionName

public String functionName
the name of the function call

ticks

public long ticks
the total number of ticks consumed by this function call

Method Detail

compareTo

public int compareTo(Object o)
used to compare this statistic to other statistics for the sake of sorting

toString

public String toString()
returns a string in the form of (total time used in seconds)s (total calls made) @(line number) (function description)