You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/02/22 18:02:56 UTC

svn commit: r1784051 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java

Author: fschumacher
Date: Wed Feb 22 18:02:56 2017
New Revision: 1784051

URL: http://svn.apache.org/viewvc?rev=1784051&view=rev
Log:
javadoc: add missing param and return tags.

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java?rev=1784051&r1=1784050&r2=1784051&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/JMeterPoolingClientConnectionManager.java Wed Feb 22 18:02:56 2017
@@ -116,6 +116,7 @@ public class JMeterPoolingClientConnecti
     }
     
     /**
+     * @return configured period of inactivity in ms after which connections will be re-validated
      * @see #setValidateAfterInactivity(int)
      *
      * @since 4.5.2
@@ -130,6 +131,7 @@ public class JMeterPoolingClientConnecti
      *   long, java.util.concurrent.TimeUnit) leased} to the consumer. Non-positive value passed
      * to this method disables connection validation. This check helps detect connections
      * that have become stale (half-closed) while kept inactive in the pool.
+     * @param ms period of inactivity in ms
      *
      * @see #leaseConnection(java.util.concurrent.Future, long, java.util.concurrent.TimeUnit)
      *