Package lumis.portal.configuration
Class EnvironmentMonitorConfiguration
- java.lang.Object
-
- lumis.portal.configuration.EnvironmentMonitorConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
public class EnvironmentMonitorConfiguration extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable
Monitor framework configuration.- Since:
- 9.0.0
- Version:
- $Revision: 24549 $ $Date: 2021-06-22 14:16:19 -0300 (Tue, 22 Jun 2021) $
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EnvironmentMonitorConfiguration
clone()
int
getMaxEntryAge()
Returns the maxEntryAge in days.int
getQueueSize()
Returns the queueSize.java.lang.Integer
getRawMaxEntryAge()
Returns the raw of maxEntryAge in days.java.lang.Integer
getRawQueueSize()
Returns the raw value ofqueueSize.java.lang.Integer
getRawThreadPoolSize()
Returns the raw value of the monitoring thread pool size.int
getThreadPoolSize()
Returns the monitoring framework thread pool size.void
setMaxEntryAge(java.lang.Integer maxEntryAge)
Sets the maxEntryAgeValue.void
setQueueSize(java.lang.Integer queueSize)
Sets the queueSize.void
setThreadPoolSize(java.lang.Integer threadPoolSize)
Sets the monitoring thread pool size.
-
-
-
Method Detail
-
getThreadPoolSize
public int getThreadPoolSize()
Returns the monitoring framework thread pool size.- Returns:
- the monitoring framework thread pool size
- Since:
- 12.2.0
-
getRawThreadPoolSize
public java.lang.Integer getRawThreadPoolSize()
Returns the raw value of the monitoring thread pool size.- Returns:
- the raw value of the monitoring thread pool size
- Since:
- 12.2.0
-
setThreadPoolSize
public void setThreadPoolSize(java.lang.Integer threadPoolSize)
Sets the monitoring thread pool size.- Parameters:
threadPoolSize
- the monitoring thread pool size.- Since:
- 12.2.0
-
getQueueSize
public int getQueueSize()
Returns the queueSize.- Returns:
- the queueSize
- Since:
- 9.0.0
-
getRawQueueSize
public java.lang.Integer getRawQueueSize()
Returns the raw value ofqueueSize.- Returns:
- the raw value ofqueueSize
- Since:
- 9.0.0
-
setQueueSize
public void setQueueSize(java.lang.Integer queueSize)
Sets the queueSize.- Parameters:
queueSize
- the queueSize value to set.- Since:
- 9.0.0
-
getMaxEntryAge
public int getMaxEntryAge()
Returns the maxEntryAge in days.- Returns:
- the maxEntryAge in days
- Since:
- 9.0.0
-
getRawMaxEntryAge
public java.lang.Integer getRawMaxEntryAge()
Returns the raw of maxEntryAge in days.- Returns:
- the raw value of maxEntryAge in days
- Since:
- 9.0.0
-
setMaxEntryAge
public void setMaxEntryAge(java.lang.Integer maxEntryAge)
Sets the maxEntryAgeValue.- Parameters:
maxEntryAge
- the maxEntryAgeValue value to set.- Since:
- 9.0.0
-
clone
protected EnvironmentMonitorConfiguration clone() throws java.lang.CloneNotSupportedException
- Overrides:
clone
in classjava.lang.Object
- Throws:
java.lang.CloneNotSupportedException
-
-