Package com.linkedin.helix.webapp

Examples of com.linkedin.helix.webapp.HelixAdminWebApp


      Thread adminThread = new Thread(new Runnable()
      {
        @Override
        public void run()
        {
          HelixAdminWebApp app = null;
          try
          {
            app = new HelixAdminWebApp(_zkAddr, _port);
            app.start();
            // Thread.currentThread().join();
            _stopCountDown.await();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
          finally
          {
            if (app != null)
            {
//              System.err.println("Stopping HelixAdminWebApp");
              app.stop();
            }
          }
        }
      });
View Full Code Here

TOP

Related Classes of com.linkedin.helix.webapp.HelixAdminWebApp

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.