Package fi.iki.elonen.NanoHTTPD

Examples of fi.iki.elonen.NanoHTTPD.Response


  /**
   * The main entry point of server - processor of any request
   */
  protected NanoHTTPD.Response serve(NanoHTTPD.IHTTPSession session) {
    Response response = serveResource(session);
    Diagnostic.log("\tStatus." + response.getStatus() + " (" + response.getMimeType() + ")");
    return response;
  }
View Full Code Here

TOP

Related Classes of fi.iki.elonen.NanoHTTPD.Response

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.