Interface WeakCache<K,V>
-
public interface WeakCache<K,V>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
WeakCache.Provider<K,V>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
get(K key, Callable<? extends V> loader)
V
getIfPresent(K key)
V
getIfPresentOrCompute(K key, Callable<? extends V> loader)
void
put(K key, V value)
-