Skip to content
🤔 Documentation issue? Report it

//leakcanary-repo/leakcanary/EventListener/Event/HeapAnalysisDone

HeapAnalysisDone

sealed class HeapAnalysisDone<T : HeapAnalysis> : EventListener.Event

Sent from the thread performing the analysis.

Inheritors

HeapAnalysisSucceeded
HeapAnalysisFailed

Types

Name Summary
HeapAnalysisFailed [androidJvm]
class HeapAnalysisFailed(uniqueId: String, heapAnalysis: HeapAnalysisFailure, showIntent: Intent) : EventListener.Event.HeapAnalysisDone<HeapAnalysisFailure>
HeapAnalysisSucceeded [androidJvm]
class HeapAnalysisSucceeded(uniqueId: String, heapAnalysis: HeapAnalysisSuccess, val unreadLeakSignatures: Set<String>, showIntent: Intent) : EventListener.Event.HeapAnalysisDone<HeapAnalysisSuccess>

Properties

Name Summary
heapAnalysis [androidJvm]
val heapAnalysis: T
showIntent [androidJvm]
val showIntent: Intent
uniqueId [androidJvm]
val uniqueId: String
Unique identifier for a related chain of event. The identifier for the events that run before HeapDump gets reset right before HeapDump is sent.