Factory

interface Factory<T>

A factory interface for producing individual s.

Parameters

<T>

The type of data that the com.bumptech.glide.load.data.DataRewinder will wrap.

Functions

Link copied to clipboard
abstract fun build(data: T): DataRewinder<T>
Returns a new com.bumptech.glide.load.data.DataRewinder wrapping the given data.
Link copied to clipboard
abstract fun getDataClass(): Class<T>
Returns the class of data this factory can produce s for.

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard