Package com.bumptech.glide.load.model.stream

Types

Link copied to clipboard
abstract class BaseGlideUrlLoader<Model> : ModelLoader<Model, Data>
A base class for loading data over http/https.
Link copied to clipboard
open class HttpGlideUrlLoader : ModelLoader<Model, Data>
An com.bumptech.glide.load.model.ModelLoader for translating (http/https URLS) into java.io.InputStream data.
Link copied to clipboard
open class HttpUriLoader : UrlUriLoader<Data>
Loads InputStreams from http or https Uris.
Link copied to clipboard
open class MediaStoreImageThumbLoader : ModelLoader<Model, Data>
Loads InputStreams from media store image Uris that point to pre-generated thumbnails for those Uris in the media store.
Link copied to clipboard
open class MediaStoreVideoThumbLoader : ModelLoader<Model, Data>
Loads InputStreams from media store video Uris that point to pre-generated thumbnails for those Uris in the media store.
Link copied to clipboard
class QMediaStoreUriLoader<DataT> : ModelLoader<Model, Data>
Best effort attempt to work around various Q storage states and bugs.
Link copied to clipboard
open class UrlLoader : ModelLoader<Model, Data>
A wrapper class that translates java.net.URL objects into objects and then uses the wrapped for com.bumptech.glide.load.model.GlideUrls to load the data.