Package com.google.gerrit.server.cache
Interface PersistentCacheFactory
-
- All Known Implementing Classes:
PersistentCacheBaseFactory
public interface PersistentCacheFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
com.google.common.cache.Cache<K,V>build(PersistentCacheDef<K,V> def)
<K,V>
com.google.common.cache.LoadingCache<K,V>build(PersistentCacheDef<K,V> def, com.google.common.cache.CacheLoader<K,V> loader)
void
onStop(String plugin)
-
-
-
Method Detail
-
build
<K,V> com.google.common.cache.Cache<K,V> build(PersistentCacheDef<K,V> def)
-
build
<K,V> com.google.common.cache.LoadingCache<K,V> build(PersistentCacheDef<K,V> def, com.google.common.cache.CacheLoader<K,V> loader)
-
onStop
void onStop(String plugin)
-
-