Package eu.stratosphere.client.web

Examples of eu.stratosphere.client.web.WebInterfaceServer


      // get the listening port
      int port = config.getInteger(ConfigConstants.WEB_FRONTEND_PORT_KEY,
        ConfigConstants.DEFAULT_WEBCLIENT_PORT);

      // start the server
      WebInterfaceServer server = new WebInterfaceServer(config, port);
      LOG.info("Starting web frontend server on port " + port + '.');
      server.start();
      server.join();
    } catch (Throwable t) {
      LOG.error("Unexpected exception: " + t.getMessage(), t);
    }
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.client.web.WebInterfaceServer

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.