Package org.apache.jmeter.samplers
Interface RemoteSampleListener
- All Superinterfaces:
- Remote
- All Known Implementing Classes:
- RemoteSampleListenerImpl
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 SummaryModifier and TypeMethodDescriptionvoidprocessBatch(List<SampleEvent> samples) This method is called remotely and fires a list of samples events received locally.voidA sample has started and stopped.voidA sample has started.voidA sample has stopped.voidvoidvoidvoidtestStarted(String host) 
- 
Method Details- 
testStarted- Throws:
- RemoteException
 
- 
testStarted- Throws:
- RemoteException
 
- 
testEnded- Throws:
- RemoteException
 
- 
testEnded- Throws:
- RemoteException
 
- 
processBatchThis method is called remotely and fires a list of samples events received locally. The function is to reduce network load when using remote testing.- Parameters:
- samples- the list of sample events to be fired locally.
- Throws:
- RemoteException- when calling the remote method fails
 
- 
sampleOccurredA sample has started and stopped.- Parameters:
- e- the event with data about the completed sample
- Throws:
- RemoteException- when calling the remote method fails
 
- 
sampleStartedA sample has started.- Parameters:
- e- the event with data about the started sample
- Throws:
- RemoteException- when calling the remote method fails
 
- 
sampleStoppedA sample has stopped.- Parameters:
- e- the event with data about the stopped sample
- Throws:
- RemoteException- when calling the remote method fails
 
 
-