Package org.apache.jmeter.samplers
Interface SampleListener
- All Known Implementing Classes:
 BackendListener,BeanShellListener,BSFListener,JSR223Listener,MailerResultCollector,RemoteListenerWrapper,RemoteSampleListenerImpl,RemoteSampleListenerWrapper,ResultAction,ResultCollector,ResultSaver,Summariser,TransactionController
public interface SampleListener
Allows notification on events occurring during the sampling process.
 Specifically, when sampling is started, when a specific sample is obtained,
 and when sampling is stopped.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidA sample has started and stopped.voidA sample has started.voidA sample has stopped. 
- 
Method Details
- 
sampleOccurred
A sample has started and stopped.- Parameters:
 e- theSampleEventthat has occurred
 - 
sampleStarted
A sample has started.- Parameters:
 e- theSampleEventthat has started
 - 
sampleStopped
A sample has stopped.- Parameters:
 e- theSampleEventthat has stopped
 
 -