Package org.sonatype.nexus.bootstrap.monitor

Examples of org.sonatype.nexus.bootstrap.monitor.KeepAliveThread


    String port = getProperty(KEEP_ALIVE_PORT, null);
    if (port != null) {
      String pingInterval = getProperty(KEEP_ALIVE_PING_INTERVAL, FIVE_SECONDS);
      String timeout = getProperty(KEEP_ALIVE_TIMEOUT, ONE_SECOND);

      new KeepAliveThread(
          LOCALHOST,
          Integer.parseInt(port),
          Integer.parseInt(pingInterval),
          Integer.parseInt(timeout)
      ).start();
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.bootstrap.monitor.KeepAliveThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.