Package com.bumptech.glide.request

Types

Link copied to clipboard
abstract class BaseRequestOptions<T : BaseRequestOptions<T>?> : Cloneable
A base object to allow method sharing between RequestOptions and .
Link copied to clipboard
class ErrorRequestCoordinator : RequestCoordinator, Request
Runs a single primary Request until it completes and then a fallback error request only if the single primary request fails.
Link copied to clipboard
abstract class ExperimentalRequestListener<ResourceT> : RequestListener<R>
An extension of RequestListener with additional parameters.
Link copied to clipboard
interface FutureTarget<R> : Future<V> , Target<R>
An interface for an object that is both a com.bumptech.glide.request.target.Target and a java.util.concurrent.Future.
Link copied to clipboard
interface Request
A request that loads a resource for an com.bumptech.glide.request.target.Target.
Link copied to clipboard
interface RequestCoordinator
An interface for coordinating multiple requests with the same .
Link copied to clipboard
open class RequestFutureTarget<R> : FutureTarget<R> , RequestListener<R>
A java.util.concurrent.Future implementation for Glide that can be used to load resources in a blocking manner on background threads.
Link copied to clipboard
interface RequestListener<R>
A class for monitoring the status of a request while images load.
Link copied to clipboard
open class RequestOptions : BaseRequestOptions<T>
Provides type independent options to customize loads with Glide.
Link copied to clipboard
interface ResourceCallback
A callback that listens for when a resource load completes successfully or fails due to an exception.
Link copied to clipboard
class SingleRequest<R> : Request, SizeReadyCallback, ResourceCallback
Link copied to clipboard
open class ThumbnailRequestCoordinator : RequestCoordinator, Request
A coordinator that coordinates two individual Requests that load a small thumbnail version of an image and the full size version of the image at the same time.