cn.hippo4j.common.model.PoolParameterInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hippo4j-common Show documentation
Show all versions of hippo4j-common Show documentation
HIPPO4J、HIPPO4J-CORE 公共代码库.
package cn.hippo4j.common.model;
import lombok.Data;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* Thread pool parameter info.
*
* @author chen.ma
* @date 2021/6/16 23:18
*/
@Data
@Accessors(chain = true)
public class PoolParameterInfo implements PoolParameter, Serializable {
private static final long serialVersionUID = -7123935122108553864L;
/**
* tenantId
*/
private String tenantId;
/**
* itemId
*/
private String itemId;
/**
* tpId
*/
private String tpId;
/**
* content
*/
private String content;
/**
* coreSize
*/
private Integer coreSize;
/**
* maxSize
*/
private Integer maxSize;
/**
* queueType
*/
private Integer queueType;
/**
* capacity
*/
private Integer capacity;
/**
* keepAliveTime
*/
private Integer keepAliveTime;
/**
* rejectedType
*/
private Integer rejectedType;
/**
* isAlarm
*/
private Integer isAlarm;
/**
* capacityAlarm
*/
private Integer capacityAlarm;
/**
* livenessAlarm
*/
private Integer livenessAlarm;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy