org.beifengtz.jvmm.server.entity.dto.ThreadInfoDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jvmm-server Show documentation
Show all versions of jvmm-server Show documentation
Provides access to operating system, process, thread and other information during Java runtime.
package org.beifengtz.jvmm.server.entity.dto;
import java.util.List;
/**
*
* Description: TODO
*
*
* Created in 17:42 2022/9/21
*
* @author beifengtz
*/
public class ThreadInfoDTO {
private long[] idArr;
private int depth = 0;
public long[] getIdArr() {
return idArr;
}
public int getDepth() {
return depth;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy