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

org.beifengtz.jvmm.server.WatchDog Maven / Gradle / Ivy

Go to download

Provides access to operating system, process, thread and other information during Java runtime.

There is a newer version: 2.4.3
Show newest version
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