List of usage examples for com.google.common.cache LoadingCache apply
@Deprecated @Override V apply(K key);
From source file:rickbw.incubator.cache.LoadingMultiCache.java
@Override @Deprecated//from w w w .j a v a 2s . c o m public V apply(final K key) { final LoadingCache<K, V> cache = getCacheNonNull(key); return cache.apply(key); }