1package com.bumptech.glide.load.model.stream;
2
3import com.bumptech.glide.load.model.ModelLoader;
4
5import java.io.InputStream;
6
7/**
8 * A base class for {@link ModelLoader}s that translate models into {@link InputStream}s.
9 *
10 * @param <T> The type of the model that will be translated into an {@link InputStream}.
11 */
12public interface StreamModelLoader<T> extends ModelLoader<T, InputStream> { }
13