-
- All Implemented Interfaces:
-
com.facebook.imagepipeline.cache.ImageCacheStatsTracker
public class NoOpImageCacheStatsTracker implements ImageCacheStatsTracker
Class that does no stats tracking at all
-
-
Method Summary
Modifier and Type Method Description static synchronized NoOpImageCacheStatsTrackergetInstance()voidonBitmapCachePut(CacheKey cacheKey)voidonBitmapCacheHit(CacheKey cacheKey)voidonBitmapCacheMiss(CacheKey cacheKey)voidonMemoryCachePut(CacheKey cacheKey)voidonMemoryCacheHit(CacheKey cacheKey)voidonMemoryCacheMiss(CacheKey cacheKey)voidonStagingAreaHit(CacheKey cacheKey)voidonStagingAreaMiss(CacheKey cacheKey)voidonDiskCacheHit(CacheKey cacheKey)voidonDiskCacheMiss(CacheKey cacheKey)voidonDiskCacheGetFail(CacheKey cacheKey)voidonDiskCachePut(CacheKey cacheKey)voidregisterBitmapMemoryCache(MemoryCache<out Object, out Object> bitmapMemoryCache)voidregisterEncodedMemoryCache(MemoryCache<out Object, out Object> encodedMemoryCache)-
Methods inherited from class com.facebook.imagepipeline.cache.ImageCacheStatsTracker
onBitmapCacheHit, onBitmapCacheMiss, onBitmapCachePut, onDiskCacheGetFail, onDiskCacheHit, onDiskCacheMiss, onDiskCachePut, onMemoryCacheHit, onMemoryCacheMiss, onMemoryCachePut, onStagingAreaHit, onStagingAreaMiss, registerBitmapMemoryCache, registerEncodedMemoryCache -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getInstance
static synchronized NoOpImageCacheStatsTracker getInstance()
-
onBitmapCachePut
void onBitmapCachePut(CacheKey cacheKey)
-
onBitmapCacheHit
void onBitmapCacheHit(CacheKey cacheKey)
-
onBitmapCacheMiss
void onBitmapCacheMiss(CacheKey cacheKey)
-
onMemoryCachePut
void onMemoryCachePut(CacheKey cacheKey)
-
onMemoryCacheHit
void onMemoryCacheHit(CacheKey cacheKey)
-
onMemoryCacheMiss
void onMemoryCacheMiss(CacheKey cacheKey)
-
onStagingAreaHit
void onStagingAreaHit(CacheKey cacheKey)
-
onStagingAreaMiss
void onStagingAreaMiss(CacheKey cacheKey)
-
onDiskCacheHit
void onDiskCacheHit(CacheKey cacheKey)
-
onDiskCacheMiss
void onDiskCacheMiss(CacheKey cacheKey)
-
onDiskCacheGetFail
void onDiskCacheGetFail(CacheKey cacheKey)
-
onDiskCachePut
void onDiskCachePut(CacheKey cacheKey)
-
registerBitmapMemoryCache
void registerBitmapMemoryCache(MemoryCache<out Object, out Object> bitmapMemoryCache)
-
registerEncodedMemoryCache
void registerEncodedMemoryCache(MemoryCache<out Object, out Object> encodedMemoryCache)
-
-
-
-