1 16 package com.google.gwt.junit.remote; 17 18 import java.rmi.Remote ; 19 import java.rmi.RemoteException ; 20 21 25 public interface BrowserManager extends Remote { 26 27 43 void keepAlive(int token, long keepAliveMs) throws RemoteException ; 44 45 55 void killBrowser(int token) throws RemoteException ; 56 57 72 int launchNewBrowser(String url, long keepAliveMs) throws RemoteException ; 73 } 74 | Popular Tags |