Package com.palantir.atlasdb.spi
Interface KeyValueServiceConfigHelper
-
- All Superinterfaces:
KeyValueServiceConfig
public interface KeyValueServiceConfigHelper extends KeyValueServiceConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default int
concurrentGetRangesThreadPoolSize()
The size of the thread pool used for concurrently running range requests.default Optional<String>
namespace()
default Optional<SharedResourcesConfig>
sharedResourcesConfig()
String
type()
-
Methods inherited from interface com.palantir.atlasdb.spi.KeyValueServiceConfig
defaultGetRangesConcurrency
-
-
-
-
Method Detail
-
type
String type()
- Specified by:
type
in interfaceKeyValueServiceConfig
-
namespace
default Optional<String> namespace()
- Specified by:
namespace
in interfaceKeyValueServiceConfig
-
concurrentGetRangesThreadPoolSize
default int concurrentGetRangesThreadPoolSize()
Description copied from interface:KeyValueServiceConfig
The size of the thread pool used for concurrently running range requests.- Specified by:
concurrentGetRangesThreadPoolSize
in interfaceKeyValueServiceConfig
-
sharedResourcesConfig
default Optional<SharedResourcesConfig> sharedResourcesConfig()
- Specified by:
sharedResourcesConfig
in interfaceKeyValueServiceConfig
-
-