You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2014/01/09 19:39:55 UTC

svn commit: r1556908 - /httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java

Author: sebb
Date: Thu Jan  9 18:39:54 2014
New Revision: 1556908

URL: http://svn.apache.org/r1556908
Log:
Document tweak

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java?rev=1556908&r1=1556907&r2=1556908&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java Thu Jan  9 18:39:54 2014
@@ -55,6 +55,13 @@ import org.apache.http.protocol.RequestU
 
 /**
  * Minimal asynchronous HTTP/1.1 client.
+ * <p>
+ * Please note that this example represents a minimal HTTP client implementation.
+ * It does not support HTTPS as is.
+ * You either need to provide BasicNIOConnPool with a connection factory
+ * that supports SSL or use a more complex HttpAsyncClient.
+ * 
+ * @see http://hc.apache.org/httpcomponents-asyncclient-4.0.x/index.html
  */
 public class NHttpClient {