Uses of Class
com.google.common.cache.RemovalNotification
-
Packages that use RemovalNotification Package Description com.google.common.cache This package contains caching utilities. -
-
Uses of RemovalNotification in com.google.common.cache
Fields in com.google.common.cache with type parameters of type RemovalNotification Modifier and Type Field Description (package private) java.util.Queue<RemovalNotification<K,V>>LocalCache. removalNotificationQueueEntries waiting to be consumed by the removal listener.Methods in com.google.common.cache that return RemovalNotification Modifier and Type Method Description static <K,V>
RemovalNotification<K,V>RemovalNotification. create(K key, V value, RemovalCause cause)Creates a newRemovalNotificationfor the givenkey/valuepair, with the givencausefor the removal.Methods in com.google.common.cache with parameters of type RemovalNotification Modifier and Type Method Description voidCacheBuilder.NullListener. onRemoval(RemovalNotification<java.lang.Object,java.lang.Object> notification)voidRemovalListener. onRemoval(RemovalNotification<K,V> notification)Notifies the listener that a removal occurred at some point in the past.
-