mirror of https://github.com/longtai-cn/hippo4j
扩展 Web 容器线程池动态调参、监控. (#68)
parent
3e0a62b1c1
commit
c41a7cd8fd
@ -0,0 +1,46 @@
|
||||
package cn.hippo4j.common.model;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* Pool base info.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/1/22 12:10
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class PoolBaseInfo {
|
||||
|
||||
/**
|
||||
* coreSize
|
||||
*/
|
||||
private Integer coreSize;
|
||||
|
||||
/**
|
||||
* maximumSize
|
||||
*/
|
||||
private Integer maximumSize;
|
||||
|
||||
/**
|
||||
* queueType
|
||||
*/
|
||||
private String queueType;
|
||||
|
||||
/**
|
||||
* queueCapacity
|
||||
*/
|
||||
private Integer queueCapacity;
|
||||
|
||||
/**
|
||||
* rejectedName
|
||||
*/
|
||||
private String rejectedName;
|
||||
|
||||
/**
|
||||
* keepAliveTime
|
||||
*/
|
||||
private Long keepAliveTime;
|
||||
|
||||
}
|
Loading…
Reference in new issue