Class CamelThreadPoolConfigurationProperties.ThreadPoolProfileConfigurationProperties
- java.lang.Object
-
- org.apache.camel.spring.boot.threadpool.CamelThreadPoolConfigurationProperties.ThreadPoolProfileConfigurationProperties
-
- Enclosing class:
- CamelThreadPoolConfigurationProperties
@ConfigurationProperties(prefix="camel.threadpool.config") public static class CamelThreadPoolConfigurationProperties.ThreadPoolProfileConfigurationProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ThreadPoolProfileConfigurationProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetAllowCoreThreadTimeOut()StringgetId()LonggetKeepAliveTime()IntegergetMaxPoolSize()IntegergetMaxQueueSize()IntegergetPoolSize()org.apache.camel.util.concurrent.ThreadPoolRejectedPolicygetRejectedPolicy()TimeUnitgetTimeUnit()voidsetAllowCoreThreadTimeOut(Boolean allowCoreThreadTimeOut)voidsetId(String id)voidsetKeepAliveTime(Long keepAliveTime)voidsetMaxPoolSize(Integer maxPoolSize)voidsetMaxQueueSize(Integer maxQueueSize)voidsetPoolSize(Integer poolSize)voidsetRejectedPolicy(org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy rejectedPolicy)voidsetTimeUnit(TimeUnit timeUnit)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getPoolSize
public Integer getPoolSize()
-
setPoolSize
public void setPoolSize(Integer poolSize)
-
getMaxPoolSize
public Integer getMaxPoolSize()
-
setMaxPoolSize
public void setMaxPoolSize(Integer maxPoolSize)
-
getKeepAliveTime
public Long getKeepAliveTime()
-
setKeepAliveTime
public void setKeepAliveTime(Long keepAliveTime)
-
getTimeUnit
public TimeUnit getTimeUnit()
-
setTimeUnit
public void setTimeUnit(TimeUnit timeUnit)
-
getMaxQueueSize
public Integer getMaxQueueSize()
-
setMaxQueueSize
public void setMaxQueueSize(Integer maxQueueSize)
-
getAllowCoreThreadTimeOut
public Boolean getAllowCoreThreadTimeOut()
-
setAllowCoreThreadTimeOut
public void setAllowCoreThreadTimeOut(Boolean allowCoreThreadTimeOut)
-
getRejectedPolicy
public org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy getRejectedPolicy()
-
setRejectedPolicy
public void setRejectedPolicy(org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy rejectedPolicy)
-
-