Skip to content

Instantly share code, notes, and snippets.

@pandey-adarsh147
Created January 12, 2015 20:34
Show Gist options
  • Save pandey-adarsh147/a2fd0efaf933781a9c0a to your computer and use it in GitHub Desktop.
Save pandey-adarsh147/a2fd0efaf933781a9c0a to your computer and use it in GitHub Desktop.
Cacheable Item for LRU
package com.vectordirection;
/**
* Created by adarshpandey on 1/12/15.
*/
public interface CacheableItem<Key> {
Key getKey();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment