Home | History | Annotate | Download | only in cache

Lines Matching refs:Key

3 import com.bumptech.glide.load.Key;
12 * An interface to actually write data to a key in the disk cache.
25 * Get the cache for the value at the given key.
32 * @param key The key in the cache.
33 * @return An InputStream representing the data at key at the time get is called.
35 File get(Key key);
38 * Write to a key in the cache. {@link Writer} is used so that the cache implementation can perform actions after
41 * @param key The key to write to.
42 * @param writer An interface that will write data given an OutputStream for the key.
44 void put(Key key, Writer writer);
47 * Remove the key and value from the cache.
49 * @param key The key to remove.
51 void delete(Key key);