package edu.calpoly.csc.scheduler.view.client; import com.google.gwt.user.client.rpc.AsyncCallback; /** * The async counterpart of GreetingService. */ public interface GreetingServiceAsync { void greetServer(String input, AsyncCallback callback) throws IllegalArgumentException; }