io.deepsense.neptune.clientlibrary.config.internal.ChannelValueBufferConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.config.internal;
import java.util.Objects;
public class ChannelValueBufferConfiguration {
private final int maxPackageCount;
private final double maxBatchSizeAsFractionOfRequestSize;
private final long minIntervalBetweenSendsMillis;
public ChannelValueBufferConfiguration(
int maxPackageCount,
double maxBatchSizeAsFractionOfRequestSize,
long minIntervalBetweenSendsMillis) {
this.maxPackageCount = maxPackageCount;
this.maxBatchSizeAsFractionOfRequestSize = maxBatchSizeAsFractionOfRequestSize;
this.minIntervalBetweenSendsMillis = minIntervalBetweenSendsMillis;
}
public int getMaxPackageCount() {
return maxPackageCount;
}
public double getMaxBatchSizeAsFractionOfRequestSize() {
return maxBatchSizeAsFractionOfRequestSize;
}
public long getMinIntervalBetweenSendsMillis() {
return minIntervalBetweenSendsMillis;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChannelValueBufferConfiguration that = (ChannelValueBufferConfiguration) o;
return maxPackageCount == that.maxPackageCount
&& maxBatchSizeAsFractionOfRequestSize == that.maxBatchSizeAsFractionOfRequestSize
&& minIntervalBetweenSendsMillis == that.minIntervalBetweenSendsMillis;
}
@Override
public int hashCode() {
return Objects.hash(maxPackageCount, maxBatchSizeAsFractionOfRequestSize, minIntervalBetweenSendsMillis);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy