org.dataloader.stats.context.IncrementLoadErrorCountStatisticsContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-dataloader Show documentation
Show all versions of java-dataloader Show documentation
A pure Java 8 port of Facebook Dataloader
package org.dataloader.stats.context;
public class IncrementLoadErrorCountStatisticsContext {
private final K key;
private final Object callContext;
public IncrementLoadErrorCountStatisticsContext(K key, Object callContext) {
this.key = key;
this.callContext = callContext;
}
public K getKey() {
return key;
}
public Object getCallContext() {
return callContext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy