| seda.sandStorm.api.ProfilerIF
All known Subclasses: seda.sandStorm.internal.sandStormProfiler,
ProfilerIF | public interface ProfilerIF (Code) | | A ProfilerIF is responsible for profiling the behavior of the system
over time. If the system is being run in profiling mode, applications
can get a handle to the ProfilerIF by invoking ManagerIF.getProfiler().
See Also: ManagerIF author: Matt Welsh |
add | public void add(String name, ProfilableIF pr)(Code) | | Add a class to the profile. This will cause the profiler to track
the object's size over time.
Parameters: name - The name of the object as it should appear in the profile. Parameters: pr - The object to profile. |
enabled | public boolean enabled()(Code) | | Returns true if the system is being run in profiling mode;
false otherwise.
|
getGraphProfiler | public StageGraph getGraphProfiler()(Code) | | Return a handle to the graph profiler.
|
|
|