Package org.apache.jmeter.threads
Class RemoteThreadsListenerTestElement
- java.lang.Object
-
- org.apache.jmeter.threads.RemoteThreadsListenerTestElement
-
- All Implemented Interfaces:
Remoteable,ThreadListener
public class RemoteThreadsListenerTestElement extends Object implements Remoteable, ThreadListener
Empty implementation only used to be able to do replacement byConvertListeners- Since:
- 2.10
-
-
Constructor Summary
Constructors Constructor Description RemoteThreadsListenerTestElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidthreadFinished()Called for each thread after all samples have been processed.voidthreadStarted()Called for each thread before starting sampling.
-
-
-
Method Detail
-
threadStarted
public void threadStarted()
Description copied from interface:ThreadListenerCalled for each thread before starting sampling. WARNING: this is called before any Config test elements are processed, so any properties they define will not have been merged in yet.- Specified by:
threadStartedin interfaceThreadListener- See Also:
JMeterThread.threadStarted()
-
threadFinished
public void threadFinished()
Description copied from interface:ThreadListenerCalled for each thread after all samples have been processed.- Specified by:
threadFinishedin interfaceThreadListener- See Also:
JMeterThread.threadFinished(org.apache.jmeter.engine.event.LoopIterationListener)
-
-