blob: fe1abcc903a26b5e11c0fff7382f529976293cd8 [file] [log] [blame]
package @clientPackage;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* The async counterpart of <code>GreetingService</code>.
*/
public interface GreetingServiceAsync {
void greetServer(String input, AsyncCallback<String> callback)
throws IllegalArgumentException;
}