StreamLocalUriFetcher

open class StreamLocalUriFetcher : LocalUriFetcher<T>

Fetches an java.io.InputStream for a local android.net.Uri.

Constructors

Link copied to clipboard
open fun StreamLocalUriFetcher(resolver: ContentResolver, uri: Uri)

Functions

Link copied to clipboard
open fun cancel()
A method that will be called when a load is no longer relevant and has been cancelled.
Link copied to clipboard
open fun cleanup()
Cleanup or recycle any resources used by this data fetcher.
Link copied to clipboard
open fun getDataClass(): Class<InputStream>
Returns the class of the data this fetcher will attempt to obtain.
Link copied to clipboard
open fun getDataSource(): DataSource
Returns the com.bumptech.glide.load.DataSource this fetcher will return data from.
Link copied to clipboard
abstract fun loadData(priority: Any, callback: DataFetcher.DataCallback<out Any>)
fun loadData(priority: Any, callback: DataFetcher.DataCallback<out Any>)
Fetch data from which a resource can be decoded.