org.apache.jmeter.samplers
Interface RemoteSampleListener
- Remote
- RemoteSampleListenerImpl
public interface RemoteSampleListener
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.
processBatch
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.
samples
- the list of sample events to be fired locally.
sampleOccurred
public void sampleOccurred(SampleEvent e)
throws RemoteException
A sample has started and stopped.
sampleStarted
public void sampleStarted(SampleEvent e)
throws RemoteException
A sample has started.
sampleStopped
public void sampleStopped(SampleEvent e)
throws RemoteException
A sample has stopped.
testEnded
public void testEnded()
throws RemoteException
testEnded
public void testEnded(String host)
throws RemoteException
testStarted
public void testStarted()
throws RemoteException
testStarted
public void testStarted(String host)
throws RemoteException
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.