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 SummaryModifier and TypeMethodDescriptionvoidsampleEnded(Sampler sampler) Will be called when a sample has just finishedvoidsampleStarting(Sampler sampler) Will be called when a sample is about to start
- 
Method Details- 
sampleStartingWill be called when a sample is about to start- Parameters:
- sampler- sample that will be started
 
- 
sampleEndedWill be called when a sample has just finished- Parameters:
- sampler- finished sample
 
 
-