Package com.mchange.v1.cachedstore
Interface CachedStore
-
- All Known Subinterfaces:
TweakableCachedStore
,WritableCachedStore
public interface CachedStore
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
CachedStore.Manager
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
find(java.lang.Object key)
void
reset()
clears any cached values.
-
-
-
Method Detail
-
find
java.lang.Object find(java.lang.Object key) throws CachedStoreException
- Throws:
CachedStoreException
-
reset
void reset() throws CachedStoreException
clears any cached values. subsequent finds will recreate from key.- Throws:
CachedStoreException
-
-