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 2017/05/09 20:03:18 UTC

[27/50] httpcomponents-core git commit: Add missing @since markers

Add missing @since markers

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.2.x@1459575 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/a78464f2
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/a78464f2
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/a78464f2

Branch: refs/heads/4.2.x
Commit: a78464f2b52c85b3147fe09f12c873b497732744
Parents: 82bf919
Author: Sebastian Bazley <se...@apache.org>
Authored: Thu Mar 21 23:14:46 2013 +0000
Committer: Sebastian Bazley <se...@apache.org>
Committed: Thu Mar 21 23:14:46 2013 +0000

----------------------------------------------------------------------
 .../java/org/apache/http/impl/nio/reactor/IOReactorConfig.java   | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/a78464f2/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java b/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
index f555b39..473d070 100644
--- a/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
+++ b/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
@@ -294,6 +294,7 @@ public final class IOReactorConfig implements Cloneable {
      * Default: <code>0</code> (system default)
      *
      * @see SocketOptions#SO_SNDBUF
+     * @since 4.2.4
      */
     public int getSndBufSize() {
         return sndBufSize;
@@ -304,6 +305,7 @@ public final class IOReactorConfig implements Cloneable {
      * for newly created sockets.
      *
      * @see SocketOptions#SO_SNDBUF
+     * @since 4.2.4
      */
     public void setSndBufSize(int sndBufSize) {
         this.sndBufSize = sndBufSize;
@@ -316,6 +318,7 @@ public final class IOReactorConfig implements Cloneable {
      * Default: <code>0</code> (system default)
      *
      * @see SocketOptions#SO_RCVBUF
+     * @since 4.2.4
      */
     public int getRcvBufSize() {
         return rcvBufSize;
@@ -326,6 +329,7 @@ public final class IOReactorConfig implements Cloneable {
      * for newly created sockets.
      *
      * @see SocketOptions#SO_RCVBUF
+     * @since 4.2.4
      */
     public void setRcvBufSize(int rcvBufSize) {
         this.rcvBufSize = rcvBufSize;