| org.netbeans.lib.profiler.heap.HeapSummary
All known Subclasses: org.netbeans.lib.profiler.heap.Summary, org.netbeans.lib.profiler.heap.ComputedSummary,
HeapSummary | public interface HeapSummary (Code) | | This is optional summary information. It contains summary heap data and
time of the heap dump.
author: Tomas Hurka |
Method Summary | |
long | getTime() the time when the memory heap dump occurred. | long | getTotalAllocatedBytes() number of total bytes allocated on the heap during the run of JVM. | long | getTotalAllocatedInstances() number of all instances allocated on the heap during the run of JVM. | int | getTotalLiveBytes() number of total bytes allocated on the heap at the time of the heap dump. | int | getTotalLiveInstances() total number of instances allocated on the heap at the time of the heap dump. |
getTime | long getTime()(Code) | | the time when the memory heap dump occurred.
the time when the memory heap dump occurred in miliseconds since 0:00 GMT 1/1/1970 |
getTotalAllocatedBytes | long getTotalAllocatedBytes()(Code) | | number of total bytes allocated on the heap during the run of JVM.
Returned only if this summary information is available in heap dump.
number of total allocated bytes on the heap during the run of JVMor -1 if the information is not available in the heap dump. |
getTotalAllocatedInstances | long getTotalAllocatedInstances()(Code) | | number of all instances allocated on the heap during the run of JVM.
Returned only if this summary information is available in heap dump.
number of instances allocated on the heap during the run of JVMor -1 if the information is not available in the heap dump. |
getTotalLiveBytes | int getTotalLiveBytes()(Code) | | number of total bytes allocated on the heap at the time of the heap dump.
If this summary information is not available in heap dump, it is computed
from the dump.
number of total allocated bytes in the heap |
getTotalLiveInstances | int getTotalLiveInstances()(Code) | | total number of instances allocated on the heap at the time of the heap dump.
If this summary information is not available in heap dump, it is computed
from the dump.
number of total live instances in the heap |
|
|