RandomAccessSourceProvider.kt
TLDR
This file contains a single interface named RandomAccessSourceProvider
which is used to open instances of RandomAccessSource
.
Methods
openRandomAccessSource
This method is used to open an instance of RandomAccessSource
. It does not take any parameters and returns an instance of RandomAccessSource
.
Classes
package shark
/**
* Can open [RandomAccessSource] instances.
*/
fun interface RandomAccessSourceProvider {
fun openRandomAccessSource(): RandomAccessSource
}