Leak Trace Object
data class LeakTraceObject(type: LeakTraceObject.ObjectType, className: String, labels: Set<String>, leakingStatus: LeakTraceObject.LeakingStatus, leakingStatusReason: String, retainedHeapByteSize: Int?, retainedObjectCount: Int?) : Serializable
Content copied to clipboard
Types
Functions
Properties
className
Link copied to clipboard
Class name of the object. The class name format is the same as what would be returned by Class.getName.
classSimpleName
Link copied to clipboard
leakingStatus
Link copied to clipboard
leakingStatusReason
Link copied to clipboard
retainedHeapByteSize
Link copied to clipboard
The minimum number of bytes which would be freed if all references to this object were released. Not null only if the retained heap size was computed AND leakingStatus is equal to LeakingStatus.UNKNOWN or LeakingStatus.LEAKING.
retainedObjectCount
Link copied to clipboard
The minimum number of objects which would be unreachable if all references to this object were released. Not null only if the retained heap size was computed AND leakingStatus is equal to LeakingStatus.UNKNOWN or LeakingStatus.LEAKING.
type
Link copied to clipboard