Interface Cache<K,T>
-
- All Known Implementing Classes:
LRUCache
public interface Cache<K,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()Tget(K key)
-
-
-
Method Detail
-
get
T get(K key) throws CacheException, IOException
- Throws:
CacheExceptionIOException
-
clear
void clear()
-
-