Uses of Interface
org.dataloader.BatchLoader
Packages that use BatchLoader
-
Uses of BatchLoader in org.dataloader
Methods in org.dataloader with parameters of type BatchLoaderModifier and TypeMethodDescriptionstatic <K,V> DataLoader <K, V> DataLoader.newDataLoader(BatchLoader<K, V> batchLoadFunction) Deprecated.static <K,V> DataLoader <K, V> DataLoader.newDataLoader(BatchLoader<K, V> batchLoadFunction, DataLoaderOptions options) Deprecated.useDataLoaderFactoryinsteadstatic <K,V> DataLoader <K, V> DataLoaderFactory.newDataLoader(BatchLoader<K, V> batchLoadFunction) Creates new DataLoader with the specified batch loader function and default options (batching, caching and unlimited batch size).static <K,V> DataLoader <K, V> DataLoaderFactory.newDataLoader(BatchLoader<K, V> batchLoadFunction, DataLoaderOptions options) Creates new DataLoader with the specified batch loader function with the provided optionsstatic <K,V> DataLoader <K, V> DataLoader.newDataLoaderWithTry(BatchLoader<K, Try<V>> batchLoadFunction) Deprecated.useDataLoaderFactoryinsteadstatic <K,V> DataLoader <K, V> DataLoader.newDataLoaderWithTry(BatchLoader<K, Try<V>> batchLoadFunction, DataLoaderOptions options) Deprecated.useDataLoaderFactoryinsteadstatic <K,V> DataLoader <K, V> DataLoaderFactory.newDataLoaderWithTry(BatchLoader<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 ofTryobjects.static <K,V> DataLoader <K, V> DataLoaderFactory.newDataLoaderWithTry(BatchLoader<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 ofTryobjects.Constructors in org.dataloader with parameters of type BatchLoaderModifierConstructorDescriptionDataLoader(BatchLoader<K, V> batchLoadFunction) Deprecated.useDataLoaderFactoryinsteadDataLoader(BatchLoader<K, V> batchLoadFunction, DataLoaderOptions options) Deprecated.useDataLoaderFactoryinstead
DataLoaderFactoryinstead