|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cache | |
---|---|
com.google.common.cache | This package contains caching utilities. |
Uses of Cache in com.google.common.cache |
---|
Classes in com.google.common.cache that implement Cache | |
---|---|
class |
AbstractCache<K,V>
This class provides a skeletal implementation of the Cache interface to minimize the
effort required to implement this interface. |
class |
ForwardingCache<K,V>
A cache which forwards all its method calls to another cache. |
static class |
ForwardingCache.SimpleForwardingCache<K,V>
A simplified version of ForwardingCache where subclasses can pass in an already
constructed Cache as the delegete. |
Methods in com.google.common.cache that return Cache | ||
---|---|---|
|
CacheBuilder.build(CacheLoader<? super K1,V1> loader)
Builds a cache, which either returns an already-loaded value for a given key or atomically computes or retrieves it using the supplied CacheLoader . |
|
protected abstract Cache<K,V> |
ForwardingCache.delegate()
|
|
protected Cache<K,V> |
ForwardingCache.SimpleForwardingCache.delegate()
|
Constructors in com.google.common.cache with parameters of type Cache | |
---|---|
ForwardingCache.SimpleForwardingCache(Cache<K,V> delegate)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |