Uses of Interface
mssql.googlecode.concurrentlinkedhashmap.EntryWeigher
-
Packages that use EntryWeigher Package Description mssql.googlecode.concurrentlinkedhashmap This package contains an implementation of a boundedConcurrentMap
data structure. -
-
Uses of EntryWeigher in mssql.googlecode.concurrentlinkedhashmap
Methods in mssql.googlecode.concurrentlinkedhashmap that return EntryWeigher Modifier and Type Method Description static <K,V>
EntryWeigher<K,V>Weighers. asEntryWeigher(Weigher<? super V> weigher)
A entry weigher backed by the specified weigher.static <K,V>
EntryWeigher<K,V>Weighers. entrySingleton()
A weigher where an entry has a weight of1
.Methods in mssql.googlecode.concurrentlinkedhashmap with parameters of type EntryWeigher Modifier and Type Method Description ConcurrentLinkedHashMap.Builder<K,V>
ConcurrentLinkedHashMap.Builder. weigher(EntryWeigher<? super K,? super V> weigher)
Specifies an algorithm to determine how many the units of capacity an entry consumes.
-