1 package shark 2 3 import okio.BufferedSource 4 import okio.Source 5 6 /** 7 * Can open [Source] instances. 8 */ interfacenull9fun interface StreamingSourceProvider { 10 fun openStreamingSource(): BufferedSource 11 } 12
1 package shark 2 3 import okio.BufferedSource 4 import okio.Source 5 6 /** 7 * Can open [Source] instances. 8 */ interfacenull9fun interface StreamingSourceProvider { 10 fun openStreamingSource(): BufferedSource 11 } 12