Package org.cyclos.impl.utils.cache
Interface CacheHandlerImplementor
-
- All Superinterfaces:
CacheHandler
public interface CacheHandlerImplementor extends CacheHandler
Internal interface for CacheHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearAll()Clears all (local) cachesbooleanisSkipCache()Returns whether this cache handler is temporarily skipping cachesvoidsetSkipCache(boolean skipCache)Sets this cache handler to temporarily skip any cache (true) or to use caches normally (false)-
Methods inherited from interface org.cyclos.impl.utils.cache.CacheHandler
apply, custom, getCache, getCacheIfInitialized, scheduleClear, scheduleEvict, scheduleEvict, schedulePartialEvict
-
-
-
-
Method Detail
-
clearAll
void clearAll()
Clears all (local) caches
-
isSkipCache
boolean isSkipCache()
Returns whether this cache handler is temporarily skipping caches
-
setSkipCache
void setSkipCache(boolean skipCache)
Sets this cache handler to temporarily skip any cache (true) or to use caches normally (false)
-
-