1 18 19 package org.apache.jmeter.engine; 20 21 import java.rmi.Remote ; 22 import java.rmi.RemoteException ; 23 24 import org.apache.jorphan.collections.HashTree; 25 26 29 public interface RemoteJMeterEngine extends Remote  30 { 31 void configure(HashTree testTree) throws RemoteException ; 32 void runTest() throws RemoteException ,JMeterEngineException; 33 void stopTest() throws RemoteException ; 34 void reset() throws RemoteException ; 35 void setHost(String host) throws RemoteException ; 36 void exit() throws RemoteException ; 37 } 38 | Popular Tags |