Uses of Class
com.hazelcast.config.FlakeIdGeneratorConfig
-
Uses of FlakeIdGeneratorConfig in com.hazelcast.config
Modifier and TypeMethodDescriptionConfig.findFlakeIdGeneratorConfig
(String name) Returns aFlakeIdGeneratorConfig
configuration for the given flake ID generator name.Config.getFlakeIdGeneratorConfig
(String name) Returns theFlakeIdGeneratorConfig
for the given name, creating one if necessary and adding it to the collection of known configurations.FlakeIdGeneratorConfig.setAllowedFutureMillis
(long allowedFutureMillis) Sets how far to the future is the generator allowed to go to generate IDs without blocking.FlakeIdGeneratorConfig.setBitsNodeId
(int bitsNodeId) Sets the bit-length of node id component.FlakeIdGeneratorConfig.setBitsSequence
(int bitsSequence) Sets the bit-length of the sequence component.FlakeIdGeneratorConfig.setEpochStart
(long epochStart) Sets the offset of timestamp component in milliseconds.Sets the name or name pattern for this config.FlakeIdGeneratorConfig.setNodeIdOffset
(long nodeIdOffset) Sets the offset that will be added to the node ID assigned to cluster member for this generator.FlakeIdGeneratorConfig.setPrefetchCount
(int prefetchCount) Sets how many IDs are pre-fetched on the background when one call toFlakeIdGenerator.newId()
is made.FlakeIdGeneratorConfig.setPrefetchValidityMillis
(long prefetchValidityMs) Sets for how long the pre-fetched IDs can be used.FlakeIdGeneratorConfig.setStatisticsEnabled
(boolean statisticsEnabled) Enables or disables statistics gathering ofLocalFlakeIdGeneratorStats
.Modifier and TypeMethodDescriptionConfig.getFlakeIdGeneratorConfigs()
Returns the map ofFlakeIdGenerator
configurations, mapped by config name.Modifier and TypeMethodDescriptionConfig.addFlakeIdGeneratorConfig
(FlakeIdGeneratorConfig config) Adds a flake ID generator configuration.Modifier and TypeMethodDescriptionConfig.setFlakeIdGeneratorConfigs
(Map<String, FlakeIdGeneratorConfig> map) Sets the map ofFlakeIdGenerator
configurations, mapped by config name.ModifierConstructorDescriptionCopy-constructor