Package http.utils.command

Examples of http.utils.command.Command


   *
   * @param port
   *            The port to listen to.
   */
  public HttpServer(int port) {
    new Command();
    try {
      server = new ServerSocket(port);
      Log.info("Server bound on port: " + server.getLocalPort());
      Runtime.getRuntime().addShutdownHook(new Thread() {
        @Override
View Full Code Here

TOP

Related Classes of http.utils.command.Command

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.