Class BackendListener
- java.lang.Object
-
- org.apache.jmeter.testelement.AbstractTestElement
-
- org.apache.jmeter.visualizers.backend.BackendListener
-
- All Implemented Interfaces:
Serializable,Cloneable,NoThreadClone,Searchable,Remoteable,SampleListener,TestElement,TestStateListener
public class BackendListener extends AbstractTestElement implements Serializable, SampleListener, TestStateListener, NoThreadClone, Remoteable
Async Listener that delegates SampleResult handling to implementations ofBackendListenerClient- Since:
- 2.13
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringARGUMENTSProperty key representing the arguments for the BackendListenerClient.static StringCLASSNAMEProperty key representing the classname of the BackendListenerClient to user.static StringDEFAULT_QUEUE_SIZEstatic StringQUEUE_SIZEQueue size-
Fields inherited from interface org.apache.jmeter.testelement.TestElement
COMMENTS, ENABLED, GUI_CLASS, NAME, TEST_CLASS
-
-
Constructor Summary
Constructors Constructor Description BackendListener()Create a BackendListener.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()ArgumentsgetArguments()Get the arguments (parameters) for the BackendListenerClient to be executed with.StringgetClassname()Gets the Classname of the BackendListenerClient objectStringgetQueueSize()Gets the queue sizevoidsampleOccurred(SampleEvent event)A sample has started and stopped.voidsampleStarted(SampleEvent e)A sample has started.voidsampleStopped(SampleEvent e)A sample has stopped.voidsetArguments(Arguments args)Set the arguments (parameters) for the BackendListenerClient to be executed with.voidsetClassname(String classname)Sets the Classname of the BackendListenerClient objectvoidsetQueueSize(String queueSize)Sets the queue sizevoidtestEnded()Implements TestStateListener.testEnded(String)voidtestEnded(String host)Method called at the end of the test.voidtestStarted()Implements TestStateListener.testStarted()voidtestStarted(String host)Implements TestStateListener.testStarted(String)-
Methods inherited from class org.apache.jmeter.testelement.AbstractTestElement
addPropertiesValues, addProperty, addProperty, addTestElement, canRemove, clear, clearTemporary, clearTestElementChildren, emptyTemporary, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse, traverseCollection, traverseMap, traverseProperty
-
-
-
-
Field Detail
-
CLASSNAME
public static final String CLASSNAME
Property key representing the classname of the BackendListenerClient to user.- See Also:
- Constant Field Values
-
QUEUE_SIZE
public static final String QUEUE_SIZE
Queue size- See Also:
- Constant Field Values
-
ARGUMENTS
public static final String ARGUMENTS
Property key representing the arguments for the BackendListenerClient.- See Also:
- Constant Field Values
-
DEFAULT_QUEUE_SIZE
public static final String DEFAULT_QUEUE_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
clone
public Object clone()
- Specified by:
clonein interfaceTestElement- Overrides:
clonein classAbstractTestElement
-
sampleOccurred
public void sampleOccurred(SampleEvent event)
Description copied from interface:SampleListenerA sample has started and stopped.- Specified by:
sampleOccurredin interfaceSampleListener- Parameters:
event- theSampleEventthat has occurred
-
testStarted
public void testStarted()
Implements TestStateListener.testStarted()- Specified by:
testStartedin interfaceTestStateListener- See Also:
StandardJMeterEngine.run()
-
testStarted
public void testStarted(String host)
Implements TestStateListener.testStarted(String)- Specified by:
testStartedin interfaceTestStateListener- Parameters:
host- name of host- See Also:
StandardJMeterEngine.run()
-
testEnded
public void testEnded(String host)
Method called at the end of the test. This is called only on one instance of BackendListener. This method will loop through all of the other BackendListenerClients which have been registered (automatically in the constructor) and notify them that the test has ended, allowing the BackendListenerClients to cleanup. Implements TestStateListener.testEnded(String)- Specified by:
testEndedin interfaceTestStateListener- Parameters:
host- name of host- See Also:
StandardJMeterEngine.stopTest()
-
testEnded
public void testEnded()
Implements TestStateListener.testEnded(String)- Specified by:
testEndedin interfaceTestStateListener- See Also:
StandardJMeterEngine.stopTest()
-
sampleStarted
public void sampleStarted(SampleEvent e)
Description copied from interface:SampleListenerA sample has started.- Specified by:
sampleStartedin interfaceSampleListener- Parameters:
e- theSampleEventthat has started
-
sampleStopped
public void sampleStopped(SampleEvent e)
Description copied from interface:SampleListenerA sample has stopped.- Specified by:
sampleStoppedin interfaceSampleListener- Parameters:
e- theSampleEventthat has stopped
-
setArguments
public void setArguments(Arguments args)
Set the arguments (parameters) for the BackendListenerClient to be executed with.- Parameters:
args- the new arguments. These replace any existing arguments.
-
getArguments
public Arguments getArguments()
Get the arguments (parameters) for the BackendListenerClient to be executed with.- Returns:
- the arguments
-
setClassname
public void setClassname(String classname)
Sets the Classname of the BackendListenerClient object- Parameters:
classname- the new Classname value
-
getClassname
public String getClassname()
Gets the Classname of the BackendListenerClient object- Returns:
- the Classname value
-
setQueueSize
public void setQueueSize(String queueSize)
Sets the queue size- Parameters:
queueSize- the size of the queue
-
getQueueSize
public String getQueueSize()
Gets the queue size- Returns:
- int queueSize
-
-