1 package com.bumptech.glide.load; 2 3 import com.bumptech.glide.load.engine.Resource; 4 5 /** 6 * An interface for writing data from a resource to some persistent data store (i.e. a local File cache). 7 * 8 * @param <T> The type of the data contained by the resource. 9 */ 10 public interface ResourceEncoder<T> extends Encoder<Resource<T>> { 11 // specializing the generic arguments 12 } 13