Uses of Class
com.google.common.cache.CacheLoader

Packages that use CacheLoader
com.google.common.cache This package contains caching utilities. 
 

Uses of CacheLoader in com.google.common.cache
 

Methods in com.google.common.cache that return CacheLoader
static
<K,V> CacheLoader<K,V>
CacheLoader.from(Function<K,V> function)
          Returns a cache loader based on an existing function instance.
static
<V> CacheLoader<Object,V>
CacheLoader.from(Supplier<V> supplier)
          Returns a cache loader based on an existing supplier instance.
 

Methods in com.google.common.cache with parameters of type CacheLoader
<K1 extends K,V1 extends V>
LoadingCache<K1,V1>
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.
 



Copyright © 2010-2012. All Rights Reserved.