PooledCachepublic interface PooledCache
Methods Summary |
---|
public void | clear()Purge existing Poolables from the pool+cache. Usually, this is done when situations
change and the items in the pool+cache are no longer appropriate. For example,
if the layout changes, the pool+cache may need to hold larger bitmaps.
The existing Poolables will be garbage collected when they are no longer being referenced
by other objects.
| public V | get(K key, boolean incrementRefCount)
| public void | offer(V scrapValue)
| public V | poll()
| public V | put(K key, V value)
| public java.lang.String | toDebugString()
|
|