main

square/leakcanary

Last updated at: 29/12/2023 09:40

CloseableHeapGraph.kt

TLDR

The CloseableHeapGraph.kt file contains a Kotlin interface CloseableHeapGraph that extends the HeapGraph interface and the Closeable interface. This interface represents a heap graph that should be closed after being used.

Classes

No classes in this file.

package shark

import java.io.Closeable

/**
 * A [HeapGraph] that should be closed after being used.
 */
interface CloseableHeapGraph : HeapGraph, Closeable