xref: /aosp_15_r20/external/leakcanary2/shark-hprof/src/main/java/shark/StreamingSourceProvider.kt (revision d9e8da70d8c9df9a41d7848ae506fb3115cae6e6)
1 package shark
2 
3 import okio.BufferedSource
4 import okio.Source
5 
6 /**
7  * Can open [Source] instances.
8  */
interfacenull9 fun interface StreamingSourceProvider {
10   fun openStreamingSource(): BufferedSource
11 }
12