1 18 19 package org.apache.jmeter.samplers; 20 21 import java.rmi.RemoteException ; 22 23 31 public interface RemoteSampleListener extends java.rmi.Remote 32 { 33 public void testStarted() throws RemoteException ; 34 35 public void testStarted(String host) throws RemoteException ; 36 37 public void testEnded() throws RemoteException ; 38 39 public void testEnded(String host) throws RemoteException ; 40 41 44 public void sampleOccurred(SampleEvent e) throws RemoteException ; 45 46 49 public void sampleStarted(SampleEvent e) throws RemoteException ; 50 51 54 public void sampleStopped(SampleEvent e) throws RemoteException ; 55 } 56 | Popular Tags |