Home » jakarta-jmeter-2.3.4_src » org.apache.jmeter.samplers » [javadoc | source]
org.apache.jmeter.samplers
public interface: RemoteSampleListener [javadoc | source]

All Implemented Interfaces:
    Remote

All Known Implementing Classes:
    RemoteSampleListenerImpl

Allows notification on events occuring during the sampling process. Specifically, when sampling is started, when a specific sample is obtained, and when sampling is stopped.
Method from org.apache.jmeter.samplers.RemoteSampleListener Summary:
processBatch,   sampleOccurred,   sampleStarted,   sampleStopped,   testEnded,   testEnded,   testStarted,   testStarted
Method from org.apache.jmeter.samplers.RemoteSampleListener Detail:
 public  void processBatch(List samples) throws RemoteException
    This method is called remotely and fires a list of samples events recieved locally. The function is to reduce network load when using remote testing.
 public  void sampleOccurred(SampleEvent e) throws RemoteException
    A sample has started and stopped.
 public  void sampleStarted(SampleEvent e) throws RemoteException
    A sample has started.
 public  void sampleStopped(SampleEvent e) throws RemoteException
    A sample has stopped.
 public  void testEnded() throws RemoteException
 public  void testEnded(String host) throws RemoteException
 public  void testStarted() throws RemoteException
 public  void testStarted(String host) throws RemoteException