Skip to content

Instantly share code, notes, and snippets.

View kayaumur's full-sized avatar
🎯
Focusing

Umur Kaya kayaumur

🎯
Focusing
View GitHub Profile
@kayaumur
kayaumur / DiskCache
Created June 21, 2018 15:15 — forked from VladSumtsov/DiskCache
Cache your data with parcelable and disklrucache
import java.util.List;
public interface DiskCache<T> {
/**
* Sets the value to {@code value}.
*/
public void set(String key, T value);
/**