Uses of Interface
org.dataloader.ValueCache
-
Packages that use ValueCache Package Description org.dataloader org.dataloader.impl -
-
Uses of ValueCache in org.dataloader
Fields in org.dataloader declared as ValueCache Modifier and Type Field Description private ValueCache<K,V>DataLoader. valueCacheprivate ValueCache<K,V>DataLoaderHelper. valueCacheprivate ValueCache<?,?>DataLoaderOptions. valueCacheMethods in org.dataloader that return ValueCache Modifier and Type Method Description static <K,V>
ValueCache<K,V>ValueCache. defaultValueCache()Creates a new value cache, using the default no-op implementation.private ValueCache<K,V>DataLoader. determineValueCache(DataLoaderOptions loaderOptions)ValueCache<K,V>DataLoader. getValueCache()Gets the valueCache associated with this data loader passed in viaDataLoaderOptions.valueCache()Methods in org.dataloader that return types with arguments of type ValueCache Modifier and Type Method Description java.util.Optional<ValueCache<?,?>>DataLoaderOptions. valueCache()Gets the (optional) cache store implementation that is used for value caching, if caching is enabled.Methods in org.dataloader with parameters of type ValueCache Modifier and Type Method Description DataLoaderOptionsDataLoaderOptions. setValueCache(ValueCache<?,?> valueCache)Sets the value cache implementation to use for caching values, if caching is enabled.Constructors in org.dataloader with parameters of type ValueCache Constructor Description DataLoaderHelper(DataLoader<K,V> dataLoader, java.lang.Object batchLoadFunction, DataLoaderOptions loaderOptions, CacheMap<java.lang.Object,V> futureCache, ValueCache<K,V> valueCache, StatisticsCollector stats, java.time.Clock clock) -
Uses of ValueCache in org.dataloader.impl
Classes in org.dataloader.impl that implement ValueCache Modifier and Type Class Description classNoOpValueCache<K,V>Implementation ofValueCachethat does nothing.
-