Package org.sonatype.nexus.bootstrap.monitor

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


   * @since 2.0
   */
  @Override
  protected void startApplication() {
    try {
      keepAliveThread = new CommandMonitorThread(
          keepAlivePort,
          new PingCommand(),
          new StopMonitorCommand(),
          new ExitCommand(),
          new HaltCommand()
View Full Code Here


  }

  private void maybeEnableCommandMonitor() throws IOException {
    String port = getProperty(COMMAND_MONITOR_PORT, null);
    if (port != null) {
      new CommandMonitorThread(
          Integer.parseInt(port),
          new StopApplicationCommand(new Runnable()
          {
            @Override
            public void run() {
View Full Code Here

TOP

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

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.