Uses of Class
com.hazelcast.config.QueueConfig
Packages that use QueueConfig
-
Uses of QueueConfig in com.hazelcast.config
Methods in com.hazelcast.config that return QueueConfigModifier and TypeMethodDescriptionQueueConfig.addItemListenerConfig
(ItemListenerConfig listenerConfig) Add an item listener configuration to this queue.Config.findQueueConfig
(String name) Returns a read-onlyIQueue
configuration for the given name.Config.getQueueConfig
(String name) Returns the QueueConfig for the given name, creating one if necessary and adding it to the collection of known configurations.QueueConfig.setAsyncBackupCount
(int asyncBackupCount) Sets the number of asynchronous backups. 0 means no backups.QueueConfig.setBackupCount
(int backupCount) Sets the number of synchronous backups for this queue.QueueConfig.setEmptyQueueTtl
(int emptyQueueTtl) Sets the TTL (time to live) for emptying the Queue.QueueConfig.setItemListenerConfigs
(List<ItemListenerConfig> listenerConfigs) Set the list of item listener configurations for this queue.QueueConfig.setMaxSize
(int maxSize) Sets the maximum size of the Queue.QueueConfig.setMergePolicyConfig
(MergePolicyConfig mergePolicyConfig) Sets theMergePolicyConfig
for this queue.Set the name for this queue.QueueConfig.setPriorityComparatorClassName
(String priorityComparatorClassName) Sets the class name that will be used to compare queue items.QueueConfig.setQueueStoreConfig
(QueueStoreConfig queueStoreConfig) Set the QueueStore (load and store queue items from/to a database) configuration.QueueConfig.setSplitBrainProtectionName
(String splitBrainProtectionName) Sets the split brain protection name for queue operations.QueueConfig.setStatisticsEnabled
(boolean statisticsEnabled) Enables or disables statistics for this queue.QueueConfig.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 QueueConfigModifier and TypeMethodDescriptionConfig.getQueueConfigs()
Returns the map ofIQueue
configurations, mapped by config name.Methods in com.hazelcast.config with parameters of type QueueConfigModifier and TypeMethodDescriptionConfig.addQueueConfig
(QueueConfig queueConfig) Adds the queue configuration.Method parameters in com.hazelcast.config with type arguments of type QueueConfigModifier and TypeMethodDescriptionConfig.setQueueConfigs
(Map<String, QueueConfig> queueConfigs) Sets the map ofIQueue
configurations, mapped by config name.Constructors in com.hazelcast.config with parameters of type QueueConfig