mirror of https://github.com/longtai-cn/hippo4j
hippo4j-core 添加 web 容器线程池修改. (#141)
parent
e5a83a0cfb
commit
06822f07f6
@ -0,0 +1,29 @@
|
|||||||
|
package cn.hippo4j.core.starter.config;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Web thread pool properties.
|
||||||
|
*
|
||||||
|
* @author chen.ma
|
||||||
|
* @date 2022/3/11 19:23
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class WebThreadPoolProperties {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Core pool size
|
||||||
|
*/
|
||||||
|
private Integer corePoolSize;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maximum pool size
|
||||||
|
*/
|
||||||
|
private Integer maximumPoolSize;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keep alive time
|
||||||
|
*/
|
||||||
|
private Integer keepAliveTime;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue