cn.hippo4j.common.model.PoolRunStateInfo 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.Getter;
import lombok.Setter;
import java.io.Serializable;
/**
* Pool run state info.
*
* @author chen.ma
* @date 2021/7/7 18:57
*/
@Getter
@Setter
public class PoolRunStateInfo implements Serializable {
/**
* currentLoad
*/
private String currentLoad;
/**
* peakLoad
*/
private String peakLoad;
/**
* tpId
*/
private String tpId;
/**
* coreSize
*/
private Integer coreSize;
/**
* maximumSize
*/
private Integer maximumSize;
/**
* poolSize
*/
private Integer poolSize;
/**
* activeSize
*/
private Integer activeSize;
/**
* The maximum number of threads that enter the thread pool at the same time
*/
private Integer largestPoolSize;
/**
* queueType
*/
private String queueType;
/**
* queueCapacity
*/
private Integer queueCapacity;
/**
* queueSize
*/
private Integer queueSize;
/**
* queueRemainingCapacity
*/
private Integer queueRemainingCapacity;
/**
* completedTaskCount
*/
private Long completedTaskCount;
/**
* rejectCount
*/
private Integer rejectCount;
/**
* host
*/
private String host;
/**
* memoryProportion
*/
private String memoryProportion;
/**
* freeMemory
*/
private String freeMemory;
/**
* clientLastRefreshTime
*/
private String clientLastRefreshTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy