org.beifengtz.jvmm.server.WatchDog 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;
/**
*
* Description: TODO 本类负责搜索物理机内可用的client,及向目标VM attach agent
*
*
* Created in 10:10 上午 2021/5/16
*
* @author beifengtz
*/
public class WatchDog {
private static volatile WatchDog INSTANCE;
private WatchDog() {
}
public static synchronized WatchDog getInstance() {
if (INSTANCE == null) {
INSTANCE = new WatchDog();
}
return INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy