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/06/06 13:44:21 UTC

svn commit: r782235 - in /httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util: SharedInputBuffer.java SharedOutputBuffer.java SimpleInputBuffer.java SimpleOutputBuffer.java

Author: olegk
Date: Sat Jun  6 11:44:21 2009
New Revision: 782235

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

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java?rev=782235&r1=782234&r2=782235&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java Sat Jun  6 11:44:21 2009
@@ -41,7 +41,8 @@
  * shared by multiple threads, usually the I/O dispatch of an I/O reactor and
  * a worker thread. 
  * <p>
- * {@link ContentInputBuffer} implemented by this class is thread safe. 
+ * Please note this class is thread safe only when used though 
+ * the {@link ContentInputBuffer} interface. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java?rev=782235&r1=782234&r2=782235&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java Sat Jun  6 11:44:21 2009
@@ -41,7 +41,8 @@
  * shared by multiple threads, usually the I/O dispatch of an I/O reactor and
  * a worker thread.
  * <p>
- * {@link ContentOutputBuffer} implemented by this class is thread safe. 
+ * Please note this class is thread safe only when used though 
+ * the {@link ContentOutputBuffer} interface. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java?rev=782235&r1=782234&r2=782235&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java Sat Jun  6 11:44:21 2009
@@ -37,7 +37,7 @@
 /**
  * Basic implementation of the {@link ContentInputBuffer} interface.
  * <p>
- * {@link ContentInputBuffer} implemented by this class is not thread safe. 
+ * This class is not thread safe. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java?rev=782235&r1=782234&r2=782235&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java Sat Jun  6 11:44:21 2009
@@ -37,7 +37,7 @@
 /**
  * Basic implementation of the {@link ContentOutputBuffer} interface. 
  * <p>
- * {@link ContentOutputBuffer} implemented by this class is not thread safe. 
+ * This class is not thread safe. 
  *
  * @since 4.0
  */