Heap Analysis Success
data class HeapAnalysisSuccess(heapDumpFile: File, createdAtTimeMillis: Long, dumpDurationMillis: Long, analysisDurationMillis: Long, metadata: Map<String, String>, applicationLeaks: List<ApplicationLeak>, libraryLeaks: List<LibraryLeak>, unreachableObjects: List<LeakTraceObject>) : HeapAnalysis
Content copied to clipboard
The result of a successful heap analysis performed by HeapAnalyzer.
Constructors
HeapAnalysisSuccess
Link copied to clipboard
fun HeapAnalysisSuccess(heapDumpFile: File, createdAtTimeMillis: Long, dumpDurationMillis: Long = DUMP_DURATION_UNKNOWN, analysisDurationMillis: Long, metadata: Map<String, String>, applicationLeaks: List<ApplicationLeak>, libraryLeaks: List<LibraryLeak>, unreachableObjects: List<LeakTraceObject>)
Content copied to clipboard
Types
Functions
Properties
allLeaks
Link copied to clipboard
The list of Leak found in the heap dump by HeapAnalyzer, ie all applicationLeaks and all libraryLeaks in one list.
analysisDurationMillis
Link copied to clipboard
applicationLeaks
Link copied to clipboard
The list of ApplicationLeak found in the heap dump by HeapAnalyzer.
createdAtTimeMillis
Link copied to clipboard
The System.currentTimeMillis when this HeapAnalysis instance was created.
dumpDurationMillis
Link copied to clipboard
heapDumpFile
Link copied to clipboard
libraryLeaks
Link copied to clipboard
The list of LibraryLeak found in the heap dump by HeapAnalyzer.
unreachableObjects
Link copied to clipboard