Package org.apache.jmeter.samplers
Interface SampleMonitor
- All Known Implementing Classes:
SampleTimeout
public interface SampleMonitor
Allows notification just before and just after a sample is invoked.
Intended for the SampleTimeout test element
-
Method Summary
Modifier and TypeMethodDescriptionvoid
sampleEnded
(Sampler sampler) Will be called when a sample has just finishedvoid
sampleStarting
(Sampler sampler) Will be called when a sample is about to start
-
Method Details
-
sampleStarting
Will be called when a sample is about to start- Parameters:
sampler
- sample that will be started
-
sampleEnded
Will be called when a sample has just finished- Parameters:
sampler
- finished sample
-