docs/javadoc/reference/com/facebook/imagepipeline/cache/ImageCacheStatsTracker.html
|
|
CountingMemoryCache<K, V>
MemoryCache<K, V>
Summary: Methods | [Expand All]
public interface
| com.facebook.imagepipeline.cache.ImageCacheStatsTracker |
| Known Indirect Subclasses
| NoOpImageCacheStatsTracker | Class that does no stats tracking at all |
|
Interface for stats tracking for the image cache.
An implementation of this interface, passed to ImagePipelineConfig, will be notified for each of the following cache events. Use this to keep cache stats for your app.
| Public Methods |
|---|
| abstract void |
| Called on a bitmap cache hit. |
| abstract void |
| Called on a bitmap cache miss. |
| abstract void |
| Called whenever decoded images are put into the bitmap cache. |
| abstract void |
| Called if an exception is thrown on a disk cache read. |
| abstract void |
| Called on a disk cache hit. |
| abstract void |
| Called on a disk cache miss. |
| abstract void |
| called whenever new files are written to disk |
| abstract void |
| Called on an encoded memory cache hit. |
| abstract void |
| Called on an encoded memory cache hit. |
| abstract void |
| Called whenever encoded images are put into the encoded memory cache. |
| abstract void |
| Called on an staging area hit. |
| abstract void |
| Called on a staging area miss hit. |
| abstract void |
| Registers a bitmap cache with this tracker. |
| abstract void |
| Registers an encoded memory cache with this tracker. |
Called on a bitmap cache hit.
Called on a bitmap cache miss.
Called whenever decoded images are put into the bitmap cache.
Called if an exception is thrown on a disk cache read.
Called on a disk cache hit.
Called on a disk cache miss.
called whenever new files are written to disk
Called on an encoded memory cache hit.
Called on an encoded memory cache hit.
Called whenever encoded images are put into the encoded memory cache.
Called on an staging area hit.
The staging area stores encoded images. It gets the images before they are written to disk cache.
Called on a staging area miss hit.
Registers a bitmap cache with this tracker.
Use this method if you need access to the cache itself to compile your stats.
Registers an encoded memory cache with this tracker.
Use this method if you need access to the cache itself to compile your stats.
+Generated by Doclava. +