Interface CheckedCacheFunction<K,V,E extends Exception>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CheckedCacheFunction<K,V,E extends Exception>
CheckedCache
's Function, can throw checked Exception.See also
CacheFunction
.- Author:
- Michael Vorburger.ch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CacheFunction<K,V>
from(Function<K,V> function)
default com.google.common.collect.ImmutableMap<K,V>
get(Iterable<? extends K> keys)
V
get(K key)
Calculate the value of the cache entry for the given key.
-