ApplicationLeak

data class ApplicationLeak(leakTraces: List<LeakTrace>) : Leak

A leak found by HeapAnalyzer in your application.

Constructors

ApplicationLeak
Link copied to clipboard
fun ApplicationLeak(leakTraces: List<LeakTrace>)

Types

Companion
Link copied to clipboard
object Companion

Functions

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

Properties

leakTraces
Link copied to clipboard
open override val leakTraces: List<LeakTrace>

Group of leak traces which share the same leak signature.

shortDescription
Link copied to clipboard
open override val shortDescription: String
signature
Link copied to clipboard
open override val signature: String

A unique SHA1 hash that represents this group of leak traces.

totalRetainedHeapByteSize
Link copied to clipboard
val totalRetainedHeapByteSize: Int?

Sum of LeakTrace.retainedHeapByteSize for all elements in leakTraces. Null if the retained heap size was not computed.

totalRetainedObjectCount
Link copied to clipboard
val totalRetainedObjectCount: Int?

Sum of LeakTrace.retainedObjectCount for all elements in leakTraces. Null if the retained heap size was not computed.