Created
January 12, 2015 20:34
-
-
Save pandey-adarsh147/a2fd0efaf933781a9c0a to your computer and use it in GitHub Desktop.
Cacheable Item for LRU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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