Cache storage abstracts away the storage aspects of a cache - associating an object with a key, retrieval and removal via the key. It is actually a small subset of the java.util.Map interface. The implementations can be coded in a non-threadsafe manner as the natural user of the cache storag
| 65 | * @author Attila Szegedi |
| 66 | */ |
| 67 | public interface CacheStorage |
| 68 | { |
| 69 | public Object get(Object key); |
| 70 | public void put(Object key, Object value); |
| 71 | public void remove(Object key); |
| 72 | public void clear(); |
| 73 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…