|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
K
- the most general type of keys this listener can listen for; for
example Object
if any key is acceptableV
- the most general type of values this listener can listen for; for
example Object
if any key is acceptable@Beta public interface RemovalListener<K,V>
An object that can receive a notification when an entry is removed from a cache. The removal resulting in notification could have occured to an entry being manually removed or replaced, or due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
An instance may be called concurrently by multiple threads to process different entries. Implementations of this interface should avoid performing blocking calls or synchronizing on shared resources.
Method Summary | |
---|---|
void |
onRemoval(RemovalNotification<K,V> notification)
Notifies the listener that a removal occurred at some point in the past. |
Method Detail |
---|
void onRemoval(RemovalNotification<K,V> notification)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |