All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ltsopensource.monitor.access.domain.JVMThreadDataPo Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package com.github.ltsopensource.monitor.access.domain;

/**
 * @author Robert HG ([email protected]) on 9/27/15.
 */
public class JVMThreadDataPo extends MDataPo {

    private Integer daemonThreadCount;

    private Integer threadCount;

    private Long totalStartedThreadCount;

    private Integer deadLockedThreadCount;

    private Double processCpuTimeRate;

    public Integer getDaemonThreadCount() {
        return daemonThreadCount;
    }

    public void setDaemonThreadCount(Integer daemonThreadCount) {
        this.daemonThreadCount = daemonThreadCount;
    }

    public Integer getThreadCount() {
        return threadCount;
    }

    public void setThreadCount(Integer threadCount) {
        this.threadCount = threadCount;
    }

    public Long getTotalStartedThreadCount() {
        return totalStartedThreadCount;
    }

    public void setTotalStartedThreadCount(Long totalStartedThreadCount) {
        this.totalStartedThreadCount = totalStartedThreadCount;
    }

    public Integer getDeadLockedThreadCount() {
        return deadLockedThreadCount;
    }

    public void setDeadLockedThreadCount(Integer deadLockedThreadCount) {
        this.deadLockedThreadCount = deadLockedThreadCount;
    }

    public Double getProcessCpuTimeRate() {
        return processCpuTimeRate;
    }

    public void setProcessCpuTimeRate(Double processCpuTimeRate) {
        this.processCpuTimeRate = processCpuTimeRate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy