Package com.google.common.cache
Interface Weigher<K,V>
- 
- All Known Implementing Classes:
 EmpiricalWeigher
@Beta @GwtCompatible public interface Weigher<K,V>
Calculates the weights of cache entries.- Since:
 - 11.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intweigh(K key, V value)Returns the weight of a cache entry. 
 -