MCPcopy Index your code
hub / github.com/wyouflf/xUtils3 / entryRemoved

Method entryRemoved

xutils/src/main/java/org/xutils/cache/LruCache.java:229–230  ·  view source on GitHub ↗

Called for entries that have been evicted or removed. This method is invoked when a value is evicted to make space, removed by a call to #remove, or replaced by a call to #put. The default implementation does nothing. The method is called without synchronization: other threads may

(boolean evicted, K key, V oldValue, V newValue)

Source from the content-addressed store, hash-verified

227 * an eviction or a {@link #remove}.
228 */
229 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {
230 }
231
232 /**
233 * Called after a cache miss to compute a value for the corresponding key.

Callers 4

getMethod · 0.95
putMethod · 0.95
trimToSizeMethod · 0.95
removeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected