Uses of Class
com.google.common.cache.RemovalNotification
Packages that use RemovalNotification
-
Uses of RemovalNotification in com.google.common.cache
Fields in com.google.common.cache with type parameters of type RemovalNotificationModifier and TypeFieldDescription(package private) final Queue
<RemovalNotification<K, V>> LocalCache.removalNotificationQueue
Entries waiting to be consumed by the removal listener.Methods in com.google.common.cache that return RemovalNotificationModifier and TypeMethodDescriptionstatic <K,
V> RemovalNotification <K, V> RemovalNotification.create
(K key, V value, RemovalCause cause) Creates a newRemovalNotification
for the givenkey
/value
pair, with the givencause
for the removal.Methods in com.google.common.cache with parameters of type RemovalNotificationModifier and TypeMethodDescriptionvoid
CacheBuilder.NullListener.onRemoval
(RemovalNotification<Object, Object> notification) void
RemovalListener.onRemoval
(RemovalNotification<K, V> notification) Notifies the listener that a removal occurred at some point in the past.