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)
| 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. |
no outgoing calls
no test coverage detected