Class ConstantThroughputTimer
-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Cloneable,org.apache.jmeter.gui.Searchable,org.apache.jmeter.testbeans.TestBean,org.apache.jmeter.testelement.TestElement,org.apache.jmeter.timers.Timer
public class ConstantThroughputTimer extends AbstractTestElement implements Timer, TestBeanThis class implements a constant throughput timer. A Constant Throughput Timer paces the samplers under its influence so that the total number of samples per unit of time approaches a given constant as much as possible. There are two different ways of pacing the requests: - delay each thread according to when it last ran - delay each thread according to when any thread last ran
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumConstantThroughputTimer.ModeThis enum defines the calculation modes used by the ConstantThroughputTimer.
-
Field Summary
Fields Modifier and Type Field Description public final static StringTHROUGHPUTpublic final static StringCALC_MODEpublic transient JMeterContextthreadContextpublic transient StringthreadNamepublic final static TestElement.CompanionCompanionpublic final static StringNAMEpublic final static StringGUI_CLASSpublic final static StringENABLEDpublic final static StringTEST_CLASSpublic final static StringCOMMENTS
-
Constructor Summary
Constructors Constructor Description ConstantThroughputTimer()Constructor for a non-configured ConstantThroughputTimer.
-
Method Summary
Modifier and Type Method Description voidsetThroughput(double throughput)Sets the desired throughput. doublegetThroughput()Gets the configured desired throughput. intgetCalcMode()voidsetCalcMode(int mode)longdelay()Retrieve the delay to use during test execution. StringtoString()Provide a description of this timer class. voidsetProperty(JMeterProperty property)Override the setProperty method in order to convert the original String calcMode property. -
Methods inherited from class org.apache.jmeter.testelement.AbstractTestElement
addTestElement, canRemove, clear, clearTestElementChildren, clone, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsLong, getPropertyAsString, getPropertyOrNull, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse -
Methods inherited from class org.apache.jmeter.timers.Timer
isModifiable -
Methods inherited from class org.apache.jmeter.testelement.TestElement
get, get, get, get, get, get, get, get, get, getOrCreate, getOrCreate, getOrNull, getOrNull, getOrNull, getProps, getSchema, getString, removed, set -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
setThroughput
void setThroughput(double throughput)
Sets the desired throughput.
- Parameters:
throughput- Desired sampling rate, in samples per minute.
-
getThroughput
double getThroughput()
Gets the configured desired throughput.
- Returns:
the rate at which samples should occur, in samples per minute.
-
getCalcMode
int getCalcMode()
-
setCalcMode
void setCalcMode(int mode)
-
delay
long delay()
Retrieve the delay to use during test execution.
-
toString
String toString()
Provide a description of this timer class. TODO: Is this ever used? I can't remember where. Remove if it isn't -- TODO: or obtain text from bean's displayName or shortDescription.
- Returns:
the description of this timer class.
-
setProperty
void setProperty(JMeterProperty property)
Override the setProperty method in order to convert the original String calcMode property. This used the locale-dependent display value, so caused problems when the language was changed. Note that the calcMode StringProperty is replaced with an IntegerProperty so the conversion only needs to happen once.
-
-
-
-