Package org.apache.jmeter.samplers
Interface SampleSender
- All Known Implementing Classes:
- AbstractSampleSender,- AsynchSampleSender,- BatchSampleSender,- DataStrippingSampleSender,- DiskStoreSampleSender,- HoldSampleSender,- StandardSampleSender,- StatisticalSampleSender
public interface SampleSender
This interface is used to define the methods that need to be intercepted
 by the SampleSender wrapper classes processed by the RemoteListenerWrapper.
- 
Method SummaryModifier and TypeMethodDescriptionvoidA sample occurred.voidThe test ended (probably not used; client-server mode needs a host)voidThe test ended.
- 
Method Details- 
testEndedvoid testEnded()The test ended (probably not used; client-server mode needs a host)
- 
testEndedThe test ended. This will be called from the engine thread.- Parameters:
- host- the host that the test ended on.
 
- 
sampleOccurredA sample occurred. This method will be called from the sampler thread.- Parameters:
- e- a Sample Event
 
 
-