JProfiler API

com.jprofiler.api.platform.data
Interface RecordedHeapUsage


public interface RecordedHeapUsage

Data object for recorded heap usage.

This object is returned by Connection.getRecordedHeapUsage(boolean).


Method Summary
 java.util.Set<HeapValue> getHeapValuesGC()
          Returns the heap value objects for garbage collected objects.
 java.util.Set<HeapValue> getHeapValuesLive()
          Returns the heap value objects for live objects.
 

Method Detail

getHeapValuesGC

java.util.Set<HeapValue> getHeapValuesGC()
Returns the heap value objects for garbage collected objects. Note: The allocation recording options in the profiling settings have to include GCed objects, otherwise this set is empty.

Returns:
the heap value objects

getHeapValuesLive

java.util.Set<HeapValue> getHeapValuesLive()
Returns the heap value objects for live objects.

Returns:
the heap value objects

JProfiler API