HttpGlideUrlLoader

open class HttpGlideUrlLoader : ModelLoader<Model, Data>

An com.bumptech.glide.load.model.ModelLoader for translating (http/https URLS) into java.io.InputStream data.

Constructors

Link copied to clipboard
open fun HttpGlideUrlLoader()
Link copied to clipboard
open fun HttpGlideUrlLoader(modelCache: ModelCache<GlideUrl, GlideUrl>)

Types

Link copied to clipboard
open class Factory : ModelLoaderFactory<T, Y>
The default factory for HttpGlideUrlLoaders.

Functions

Link copied to clipboard
open fun buildLoadData(    model: GlideUrl,     width: Int,     height: Int,     options: Options): ModelLoader.LoadData<InputStream>
Returns a com.bumptech.glide.load.model.ModelLoader.LoadData containing a required to decode the resource represented by this model, as well as a set of Keys that identify the data loaded by the com.bumptech.glide.load.data.DataFetcher as well as an optional list of alternate keys from which equivalent data can be loaded.
Link copied to clipboard
open fun handles(model: GlideUrl): Boolean
Returns true if the given model is a of a recognized type that this loader can probably load.

Properties

Link copied to clipboard
val TIMEOUT: Option<Integer>
An integer option that is used to determine the maximum connect and read timeout durations (in milliseconds) for network connections.