Package gov.nasa.worldwind.cache
Interface MemoryCacheSet
-
- All Known Implementing Classes:
BasicMemoryCacheSet
public interface MemoryCacheSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemoryCacheaddCache(java.lang.String key, MemoryCache cache)voidclear()booleancontainsCache(java.lang.String key)java.util.Map<java.lang.String,MemoryCache>getAllCaches()MemoryCachegetCache(java.lang.String cacheKey)java.util.Collection<PerformanceStatistic>getPerformanceStatistics()
-
-
-
Method Detail
-
containsCache
boolean containsCache(java.lang.String key)
-
getCache
MemoryCache getCache(java.lang.String cacheKey)
-
addCache
MemoryCache addCache(java.lang.String key, MemoryCache cache)
-
getPerformanceStatistics
java.util.Collection<PerformanceStatistic> getPerformanceStatistics()
-
clear
void clear()
-
getAllCaches
java.util.Map<java.lang.String,MemoryCache> getAllCaches()
-
-