xref: /aosp_15_r20/external/leakcanary2/shark-hprof/src/main/java/shark/RandomAccessSourceProvider.kt (revision d9e8da70d8c9df9a41d7848ae506fb3115cae6e6)
1 package shark
2 
3 /**
4  * Can open [RandomAccessSource] instances.
5  */
interfacenull6 fun interface RandomAccessSourceProvider {
7   fun openRandomAccessSource(): RandomAccessSource
8 }
9