Uses of Interface
com.google.common.collect.MapEvictionListener

Packages that use MapEvictionListener
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of MapEvictionListener in com.google.common.collect
 

Methods in com.google.common.collect that return MapEvictionListener
static
<K,V> MapEvictionListener<K,V>
EvictionListeners.asynchronous(MapEvictionListener<K,V> listener, Executor executor)
          Deprecated. Caching functionality in MapMaker is being moved to CacheBuilder. Functionality similar to EvictionListeners#asynchronous is provided by RemovalListeners.asynchronous(com.google.common.cache.RemovalListener, java.util.concurrent.Executor). This method is scheduled for deletion from Guava in Guava release 11.0.
 

Methods in com.google.common.collect with parameters of type MapEvictionListener
static
<K,V> MapEvictionListener<K,V>
EvictionListeners.asynchronous(MapEvictionListener<K,V> listener, Executor executor)
          Deprecated. Caching functionality in MapMaker is being moved to CacheBuilder. Functionality similar to EvictionListeners#asynchronous is provided by RemovalListeners.asynchronous(com.google.common.cache.RemovalListener, java.util.concurrent.Executor). This method is scheduled for deletion from Guava in Guava release 11.0.
<K,V> GenericMapMaker<K,V>
MapMaker.evictionListener(MapEvictionListener<K,V> listener)
          Deprecated. Caching functionality in MapMaker is being moved to CacheBuilder. Functionality similar to MapMaker.evictionListener(com.google.common.collect.MapEvictionListener) is provided by CacheBuilder.removalListener(com.google.common.cache.RemovalListener) which also provides additional information about the entry being evicted; note that evictionListener only notifies on removals due to eviction, while removalListener also notifies on explicit removal (providing the RemovalCause to indicate the specific cause of removal. This method is scheduled for deletion in Guava release 11.
 



Copyright © 2010-2011. All Rights Reserved.