You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/03/03 19:29:44 UTC

svn commit: r1785361 - in /jmeter/trunk/src/jorphan/org/apache/jorphan/util: JMeterStopTestException.java JMeterStopTestNowException.java JMeterStopThreadException.java

Author: pmouawad
Date: Fri Mar  3 19:29:44 2017
New Revision: 1785361

URL: http://svn.apache.org/viewvc?rev=1785361&view=rev
Log:
improve javadocs

Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestException.java
    jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestNowException.java
    jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopThreadException.java

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestException.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestException.java?rev=1785361&r1=1785360&r2=1785361&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestException.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestException.java Fri Mar  3 19:29:44 2017
@@ -21,8 +21,7 @@ package org.apache.jorphan.util;
 /**
  * This Exception is for use by functions etc to signal a Stop Test condition
  * where there is no access to the normal stop method
- *
- * @version $Revision$
+ * Stop test now means shutdown test waiting for current running samplers to end
  */
 public class JMeterStopTestException extends RuntimeException {
     private static final long serialVersionUID = 240L;

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestNowException.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestNowException.java?rev=1785361&r1=1785360&r2=1785361&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestNowException.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopTestNowException.java Fri Mar  3 19:29:44 2017
@@ -20,9 +20,9 @@ package org.apache.jorphan.util;
 
 /**
  * This Exception is for use by functions etc to signal a Stop Test Now condition
- * where there is no access to the normal stop method
+ * where there is no access to the normal stop method.
+ * Stop test now means interrupting current running samplers which will mark them as failed
  *
- * @version $Revision$
  */
 public class JMeterStopTestNowException extends RuntimeException {
     private static final long serialVersionUID = 240L;

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopThreadException.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopThreadException.java?rev=1785361&r1=1785360&r2=1785361&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopThreadException.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/util/JMeterStopThreadException.java Fri Mar  3 19:29:44 2017
@@ -21,8 +21,7 @@ package org.apache.jorphan.util;
 /**
  * This Exception is for use by functions etc to signal a Stop Thread condition
  * where there is no access to the normal stop method
- *
- * @version $Revision$
+ * Thread will shutdown after end of current running sampler. 
  */
 public class JMeterStopThreadException extends RuntimeException {
     private static final long serialVersionUID = 240L;