Uses of Interface
org.dataloader.MappedBatchLoaderWithContext
Packages that use MappedBatchLoaderWithContext
-
Uses of MappedBatchLoaderWithContext in org.dataloader
Methods in org.dataloader with parameters of type MappedBatchLoaderWithContextModifier and TypeMethodDescriptionstatic <K,
V> DataLoader <K, V> DataLoader.newMappedDataLoader
(MappedBatchLoaderWithContext<K, V> batchLoadFunction) Deprecated.static <K,
V> DataLoader <K, V> DataLoader.newMappedDataLoader
(MappedBatchLoaderWithContext<K, V> batchLoadFunction, DataLoaderOptions options) Deprecated.useDataLoaderFactory
insteadstatic <K,
V> DataLoader <K, V> DataLoaderFactory.newMappedDataLoader
(MappedBatchLoaderWithContext<K, V> batchLoadFunction) Creates new DataLoader with the specified mapped batch loader function and default options (batching, caching and unlimited batch size).static <K,
V> DataLoader <K, V> DataLoaderFactory.newMappedDataLoader
(MappedBatchLoaderWithContext<K, V> batchLoadFunction, DataLoaderOptions options) Creates new DataLoader with the specified batch loader function with the provided optionsstatic <K,
V> DataLoader <K, V> DataLoader.newMappedDataLoaderWithTry
(MappedBatchLoaderWithContext<K, Try<V>> batchLoadFunction) Deprecated.useDataLoaderFactory
insteadstatic <K,
V> DataLoader <K, V> DataLoader.newMappedDataLoaderWithTry
(MappedBatchLoaderWithContext<K, Try<V>> batchLoadFunction, DataLoaderOptions options) Deprecated.useDataLoaderFactory
insteadstatic <K,
V> DataLoader <K, V> DataLoaderFactory.newMappedDataLoaderWithTry
(MappedBatchLoaderWithContext<K, Try<V>> batchLoadFunction) Creates new DataLoader with the specified batch loader function and default options (batching, caching and unlimited batch size) where the batch loader function returns a list ofTry
objects.static <K,
V> DataLoader <K, V> DataLoaderFactory.newMappedDataLoaderWithTry
(MappedBatchLoaderWithContext<K, Try<V>> batchLoadFunction, DataLoaderOptions options) Creates new DataLoader with the specified batch loader function and with the provided options where the batch loader function returns a list ofTry
objects.
DataLoaderFactory
instead