HeapAnalysisFailure

data class HeapAnalysisFailure(heapDumpFile: File, createdAtTimeMillis: Long, dumpDurationMillis: Long, analysisDurationMillis: Long, exception: HeapAnalysisException) : HeapAnalysis

The analysis performed by HeapAnalyzer did not complete successfully.

Constructors

HeapAnalysisFailure
Link copied to clipboard
fun HeapAnalysisFailure(heapDumpFile: File, createdAtTimeMillis: Long, dumpDurationMillis: Long = DUMP_DURATION_UNKNOWN, analysisDurationMillis: Long, exception: HeapAnalysisException)

Types

Companion
Link copied to clipboard
object Companion

Functions

toString
Link copied to clipboard
open override fun toString(): String

Properties

analysisDurationMillis
Link copied to clipboard
open override val analysisDurationMillis: Long

Total time spent analyzing the heap.

createdAtTimeMillis
Link copied to clipboard
open override val createdAtTimeMillis: Long

The System.currentTimeMillis when this HeapAnalysis instance was created.

dumpDurationMillis
Link copied to clipboard
open override val dumpDurationMillis: Long

Total time spent dumping the heap.

exception
Link copied to clipboard
val exception: HeapAnalysisException

An exception wrapping the actual exception that was thrown.

heapDumpFile
Link copied to clipboard
open override val heapDumpFile: File

The hprof file that was analyzed.