All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bumptech.glide.load.model.ModelLoaderFactory Maven / Gradle / Ivy

Go to download

A fast and efficient image loading library for Android focused on smooth scrolling.

There is a newer version: 5.0.0-rc01
Show newest version
package com.bumptech.glide.load.model;

import android.content.Context;
import androidx.annotation.NonNull;
import com.bumptech.glide.Glide;
import com.bumptech.glide.Registry;

/**
 * An interface for creating a {@link ModelLoader} for a given model type.
 *
 * 

The application {@link android.content.Context} can be passed in to the constructor of the * factory when necessary. It's unsafe to retain {@link android.app.Activity} {@link * android.content.Context}s in factories. The {@link android.content.Context} can be obtained from * {@link com.bumptech.glide.module.LibraryGlideModule#registerComponents(Context, Glide, Registry)} * in most cases. * * @param The type of the model the {@link com.bumptech.glide.load.model.ModelLoader}s built by * this factory can handle * @param The type of data the {@link com.bumptech.glide.load.model.ModelLoader}s built by this * factory can load. */ public interface ModelLoaderFactory { /** * Build a concrete ModelLoader for this model type. * * @param multiFactory A map of classes to factories that can be used to construct additional * {@link ModelLoader}s that this factory's {@link ModelLoader} may depend on * @return A new {@link ModelLoader} */ @NonNull ModelLoader build(@NonNull MultiModelLoaderFactory multiFactory); /** A lifecycle method that will be called when this factory is about to replaced. */ void teardown(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy