Class QueueConfig
- java.lang.Object
-
- org.opennms.netmgt.telemetry.config.model.QueueConfig
-
- All Implemented Interfaces:
QueueDefinition
public class QueueConfig extends java.lang.Object implements QueueDefinition
-
-
Constructor Summary
Constructors Constructor Description QueueConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<AdapterConfig>getAdapters()java.util.Optional<java.lang.Integer>getBatchIntervalMs()Messages are aggregated in batches before being dispatched.java.util.Optional<java.lang.Integer>getBatchSize()Messages are aggregated in batches before being dispatched.java.lang.StringgetName()The name of the protocol.java.util.Optional<java.lang.Integer>getNumThreads()Number of threads used for consuming/dispatching messages.java.util.Optional<java.lang.Integer>getQueueSize()Maximum number of messages to keep in memory while waiting to be dispatched.java.util.Optional<java.lang.Boolean>getUseRoutingKey()Whether or not the routing key should be used when forwarding messages to the broker.inthashCode()voidsetAdapters(java.util.List<AdapterConfig> adapters)voidsetBatchIntervalMs(java.lang.Integer batchIntervalMs)voidsetBatchSize(java.lang.Integer batchSize)voidsetName(java.lang.String name)voidsetNumThreads(java.lang.Integer numThreads)voidsetQueueSize(java.lang.Integer queueSize)voidsetUseRoutingKey(java.lang.Boolean useRoutingKey)java.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:QueueDefinitionThe name of the protocol. This is used as a suffix for any associated queues that are created and must be the same on both OpenNMS and Minion.- Specified by:
getNamein interfaceQueueDefinition- Returns:
- the protocol name
-
setName
public void setName(java.lang.String name)
-
getNumThreads
public java.util.Optional<java.lang.Integer> getNumThreads()
Description copied from interface:QueueDefinitionNumber of threads used for consuming/dispatching messages.- Specified by:
getNumThreadsin interfaceQueueDefinition- Returns:
- the number of threads
-
setNumThreads
public void setNumThreads(java.lang.Integer numThreads)
-
getBatchSize
public java.util.Optional<java.lang.Integer> getBatchSize()
Description copied from interface:QueueDefinitionMessages are aggregated in batches before being dispatched. When the batch reaches this size, it will be dispatched.- Specified by:
getBatchSizein interfaceQueueDefinition- Returns:
- the batch size
-
setBatchSize
public void setBatchSize(java.lang.Integer batchSize)
-
getBatchIntervalMs
public java.util.Optional<java.lang.Integer> getBatchIntervalMs()
Description copied from interface:QueueDefinitionMessages are aggregated in batches before being dispatched. When the batch has been created for longer than this interval (ms) it will be dispatched, regardless of the current size.- Specified by:
getBatchIntervalMsin interfaceQueueDefinition- Returns:
- the batch interval
-
setBatchIntervalMs
public void setBatchIntervalMs(java.lang.Integer batchIntervalMs)
-
getQueueSize
public java.util.Optional<java.lang.Integer> getQueueSize()
Description copied from interface:QueueDefinitionMaximum number of messages to keep in memory while waiting to be dispatched.- Specified by:
getQueueSizein interfaceQueueDefinition- Returns:
- the queue size
-
setQueueSize
public void setQueueSize(java.lang.Integer queueSize)
-
getUseRoutingKey
public java.util.Optional<java.lang.Boolean> getUseRoutingKey()
Description copied from interface:QueueDefinitionWhether or not the routing key should be used when forwarding messages to the broker.- Specified by:
getUseRoutingKeyin interfaceQueueDefinition- Returns:
- whether or not to use the routing key
-
setUseRoutingKey
public void setUseRoutingKey(java.lang.Boolean useRoutingKey)
-
getAdapters
public java.util.List<AdapterConfig> getAdapters()
-
setAdapters
public void setAdapters(java.util.List<AdapterConfig> adapters)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-