com.linkedin.restli.client.ParSeqRestliClientConfigImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parseq-restli-client Show documentation
Show all versions of parseq-restli-client Show documentation
Uploads all artifacts belonging to configuration ':parseq-restli-client:archives'
package com.linkedin.restli.client;
import java.util.Map;
class ParSeqRestliClientConfigImpl implements ParSeqRestliClientConfig {
private final Map _timeoutMsConfig;
private final Map _batchingEnabledConfig;
private final Map _maxBatchSizeConfig;
public ParSeqRestliClientConfigImpl(Map timeoutMsConfig, Map batchingEnabledConfig,
Map maxBatchSizeConfig) {
_timeoutMsConfig = timeoutMsConfig;
_batchingEnabledConfig = batchingEnabledConfig;
_maxBatchSizeConfig = maxBatchSizeConfig;
}
@Override
public Map getTimeoutMsConfig() {
return _timeoutMsConfig;
}
@Override
public Map isBatchingEnabledConfig() {
return _batchingEnabledConfig;
}
@Override
public Map getMaxBatchSizeConfig() {
return _maxBatchSizeConfig;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy