Package lumis.portal.configuration
Class EnvironmentMonitorConfiguration
- java.lang.Object
-
- lumis.portal.configuration.EnvironmentMonitorConfiguration
-
- All Implemented Interfaces:
Serializable
public class EnvironmentMonitorConfiguration extends Object implements Serializable
Monitor framework configuration.- Since:
- 9.0.0
- Version:
- $Revision: 23534 $ $Date: 2020-01-14 13:16:30 -0300 (Tue, 14 Jan 2020) $
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMaxEntryAge()
Returns the maxEntryAge in days.int
getQueueSize()
Returns the queueSize.Integer
getRawMaxEntryAge()
Returns the raw of maxEntryAge in days.Integer
getRawQueueSize()
Returns the raw value ofqueueSize.Integer
getRawThreadPoolSize()
Returns the raw value of the monitoring thread pool size.int
getThreadPoolSize()
Returns the monitoring framework thread pool size.void
setMaxEntryAge(Integer maxEntryAge)
Sets the maxEntryAgeValue.void
setQueueSize(Integer queueSize)
Sets the queueSize.void
setThreadPoolSize(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 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(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 Integer getRawQueueSize()
Returns the raw value ofqueueSize.- Returns:
- the raw value ofqueueSize
- Since:
- 9.0.0
-
setQueueSize
public void setQueueSize(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 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(Integer maxEntryAge)
Sets the maxEntryAgeValue.- Parameters:
maxEntryAge
- the maxEntryAgeValue value to set.- Since:
- 9.0.0
-
-