- CacheKey<K> - Interface in org.dataloader
-
Function that is invoked on input keys of type
K
to derive keys that are required by the
CacheMap
implementation.
- cacheKeyFunction() - Method in class org.dataloader.DataLoaderOptions
-
Gets an (optional) function to invoke for creation of the cache key, if caching is enabled.
- CacheMap<U,V> - Interface in org.dataloader
-
Cache map interface for data loaders that use caching.
- cacheMap() - Method in class org.dataloader.DataLoaderOptions
-
Gets the (optional) cache map implementation that is used for caching, if caching is enabled.
- cachingEnabled() - Method in class org.dataloader.DataLoaderOptions
-
Option that determines whether to use caching of futures (the default), or not.
- cause(CompletableFuture) - Static method in class org.dataloader.impl.CompletableFutureKit
-
- cause() - Method in interface org.dataloader.impl.PromisedValues
-
The exception cause or null if it didn't fail
- cause(int) - Method in interface org.dataloader.impl.PromisedValues
-
The exception cause at the specified index or null if it didn't fail
- cause() - Method in class org.dataloader.impl.PromisedValuesImpl
-
- cause(int) - Method in class org.dataloader.impl.PromisedValuesImpl
-
- clear() - Method in interface org.dataloader.CacheMap
-
Clears all entries of the cache map
- clear(K) - Method in class org.dataloader.DataLoader
-
Clears the future with the specified key from the cache, if caching is enabled, so it will be re-fetched
on the next load request.
- clear() - Method in class org.dataloader.impl.DefaultCacheMap
-
Clears all entries of the cache map
- clearAll() - Method in class org.dataloader.DataLoader
-
Clears the entire cache map of the loader.
- combineAllOf(List<CompletionStage<T>>) - Static method in class org.dataloader.impl.PromisedValuesImpl
-
- combinePromisedValues(List<PromisedValues<T>>) - Static method in class org.dataloader.impl.PromisedValuesImpl
-
- CompletableFutureKit - Class in org.dataloader.impl
-
Some really basic helpers when working with CompletableFutures
- CompletableFutureKit() - Constructor for class org.dataloader.impl.CompletableFutureKit
-
- containsKey(U) - Method in interface org.dataloader.CacheMap
-
Checks whether the specified key is contained in the cach map.
- containsKey(U) - Method in class org.dataloader.impl.DefaultCacheMap
-
Checks whether the specified key is contained in the cach map.
- create() - Static method in class org.dataloader.DataLoaderOptions
-