Uses of Class
com.hazelcast.config.RingbufferConfig
Packages that use RingbufferConfig
-
Uses of RingbufferConfig in com.hazelcast.config
Methods in com.hazelcast.config that return RingbufferConfigModifier and TypeMethodDescriptionConfig.findRingbufferConfig
(String name) Returns a read-onlyRingbuffer
configuration for the given name.Config.getRingbufferConfig
(String name) Returns the RingbufferConfig for the given name, creating one if necessary and adding it to the collection of known configurations.RingbufferConfig.setAsyncBackupCount
(int asyncBackupCount) Sets the number of asynchronous backups.RingbufferConfig.setBackupCount
(int backupCount) Sets the number of synchronous backups.RingbufferConfig.setCapacity
(int capacity) Sets the capacity of the ringbuffer.RingbufferConfig.setInMemoryFormat
(InMemoryFormat inMemoryFormat) Sets the in-memory format.RingbufferConfig.setMergePolicyConfig
(MergePolicyConfig mergePolicyConfig) Sets theMergePolicyConfig
for this ringbuffer.Sets the name of the ringbuffer.RingbufferConfig.setRingbufferStoreConfig
(RingbufferStoreConfig ringbufferStoreConfig) Set the RingbufferStore (load and store ringbuffer items from/to a database) configuration.RingbufferConfig.setSplitBrainProtectionName
(String splitBrainProtectionName) Sets the split brain protection name for operations.RingbufferConfig.setTimeToLiveSeconds
(int timeToLiveSeconds) Sets the time to live in seconds which is the maximum number of seconds for each item to stay in the ringbuffer before being removed.RingbufferConfig.setUserCodeNamespace
(String userCodeNamespace) Associates the provided Namespace Name with this structure forClassLoader
awareness.Methods in com.hazelcast.config that return types with arguments of type RingbufferConfigModifier and TypeMethodDescriptionConfig.getRingbufferConfigs()
Returns the map ofRingbuffer
configurations, mapped by config name.Methods in com.hazelcast.config with parameters of type RingbufferConfigModifier and TypeMethodDescriptionConfig.addRingBufferConfig
(RingbufferConfig ringbufferConfig) Adds the ringbuffer configuration.Method parameters in com.hazelcast.config with type arguments of type RingbufferConfigModifier and TypeMethodDescriptionConfig.setRingbufferConfigs
(Map<String, RingbufferConfig> ringbufferConfigs) Sets the map ofRingbuffer
configurations, mapped by config name.Constructors in com.hazelcast.config with parameters of type RingbufferConfigModifierConstructorDescriptionRingbufferConfig
(RingbufferConfig config) Clones a RingbufferConfigRingbufferConfig
(String name, RingbufferConfig config) Creates a new RingbufferConfig by cloning an existing config and overriding the name.