Uses of Interface
org.dataloader.ValueCache
Packages that use ValueCache
-
Uses of ValueCache in org.dataloader
Fields in org.dataloader declared as ValueCacheModifier and TypeFieldDescriptionprivate final ValueCache
<K, V> DataLoader.valueCache
private final ValueCache
<K, V> DataLoaderHelper.valueCache
private ValueCache
<?, ?> DataLoaderOptions.valueCache
Methods in org.dataloader that return ValueCacheModifier and TypeMethodDescriptionstatic <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 ValueCacheModifier and TypeMethodDescriptionOptional
<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 ValueCacheModifier and TypeMethodDescriptionDataLoaderOptions.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 ValueCacheModifierConstructorDescription(package private)
DataLoaderHelper
(DataLoader<K, V> dataLoader, Object batchLoadFunction, DataLoaderOptions loaderOptions, CacheMap<Object, V> futureCache, ValueCache<K, V> valueCache, StatisticsCollector stats, Clock clock) -
Uses of ValueCache in org.dataloader.impl
Classes in org.dataloader.impl that implement ValueCacheModifier and TypeClassDescriptionclass
NoOpValueCache<K,
V> Implementation ofValueCache
that does nothing.