You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2009/01/24 18:13:41 UTC

svn commit: r737400 - in /httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http: impl/nio/SSLServerIOEventDispatch.java nio/NHttpClientIOTarget.java nio/NHttpServerIOTarget.java

Author: olegk
Date: Sat Jan 24 17:13:41 2009
New Revision: 737400

URL: http://svn.apache.org/viewvc?rev=737400&view=rev
Log:
Javadoc updates

Modified:
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpClientIOTarget.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpServerIOTarget.java

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/impl/nio/SSLServerIOEventDispatch.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/impl/nio/SSLServerIOEventDispatch.java?rev=737400&r1=737399&r2=737400&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/impl/nio/SSLServerIOEventDispatch.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/impl/nio/SSLServerIOEventDispatch.java Sat Jan 24 17:13:41 2009
@@ -32,7 +32,6 @@
 package org.apache.http.impl.nio;
 
 import java.io.IOException;
-import java.nio.ByteBuffer;
 
 import javax.net.ssl.SSLContext;
 import javax.net.ssl.SSLException;

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpClientIOTarget.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpClientIOTarget.java?rev=737400&r1=737399&r2=737400&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpClientIOTarget.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpClientIOTarget.java Sat Jan 24 17:13:41 2009
@@ -42,8 +42,18 @@
  */
 public interface NHttpClientIOTarget extends NHttpClientConnection {
     
+    /**
+     * Triggered when the connection is ready to consume input.
+     * 
+     * @param handler the client protocol handler.
+     */
     void consumeInput(NHttpClientHandler handler);
     
+    /**
+     * Triggered when the connection is ready to produce output.
+     * 
+     * @param handler the client protocol handler.
+     */
     void produceOutput(NHttpClientHandler handler);    
 
 }

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpServerIOTarget.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpServerIOTarget.java?rev=737400&r1=737399&r2=737400&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpServerIOTarget.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/NHttpServerIOTarget.java Sat Jan 24 17:13:41 2009
@@ -42,8 +42,18 @@
  */
 public interface NHttpServerIOTarget extends NHttpServerConnection {
     
+    /**
+     * Triggered when the connection is ready to consume input.
+     * 
+     * @param handler the server protocol handler.
+     */
     void consumeInput(NHttpServiceHandler handler);
     
+    /**
+     * Triggered when the connection is ready to produce output.
+     * 
+     * @param handler the server protocol handler.
+     */
     void produceOutput(NHttpServiceHandler handler);    
 
 }