Uses of Interface
org.dataloader.stats.StatisticsCollector
-
Packages that use StatisticsCollector Package Description org.dataloader org.dataloader.stats -
-
Uses of StatisticsCollector in org.dataloader
Fields in org.dataloader declared as StatisticsCollector Modifier and Type Field Description private StatisticsCollector
DataLoader. stats
private StatisticsCollector
DataLoaderHelper. stats
Fields in org.dataloader with type parameters of type StatisticsCollector Modifier and Type Field Description private java.util.function.Supplier<StatisticsCollector>
DataLoaderOptions. statisticsCollector
Methods in org.dataloader that return StatisticsCollector Modifier and Type Method Description StatisticsCollector
DataLoaderOptions. getStatisticsCollector()
Method parameters in org.dataloader with type arguments of type StatisticsCollector Modifier and Type Method Description DataLoaderOptions
DataLoaderOptions. setStatisticsCollector(java.util.function.Supplier<StatisticsCollector> statisticsCollector)
Sets the statistics collector supplier that will be used with these data loader options.Constructors in org.dataloader with parameters of type StatisticsCollector 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 StatisticsCollector in org.dataloader.stats
Classes in org.dataloader.stats that implement StatisticsCollector Modifier and Type Class Description class
DelegatingStatisticsCollector
This statistics collector keeps dataloader statistics AND also calls the delegate collector at the same time.class
NoOpStatisticsCollector
A statistics collector that does nothingclass
SimpleStatisticsCollector
This simple collector usesAtomicLong
s to collect statisticsclass
ThreadLocalStatisticsCollector
This can collect statistics per thread as well as in an overall sense.Fields in org.dataloader.stats declared as StatisticsCollector Modifier and Type Field Description private StatisticsCollector
DelegatingStatisticsCollector. collector
private StatisticsCollector
DelegatingStatisticsCollector. delegateCollector
Constructors in org.dataloader.stats with parameters of type StatisticsCollector Constructor Description DelegatingStatisticsCollector(StatisticsCollector delegateCollector)
-