package com.google.common.cache; import com.google.common.base.Function; import com.google.common.collect.ImmutableMap; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ExecutionException; /* loaded from: classes2.dex */ public interface LoadingCache extends Cache, Function { @Override // com.google.common.base.Function @Deprecated V apply(K k); @Override // com.google.common.cache.Cache ConcurrentMap asMap(); V get(K k) throws ExecutionException; ImmutableMap getAll(Iterable iterable) throws ExecutionException; V getUnchecked(K k); void refresh(K k); }