Files
java-tutorials/google-web-toolkit/src/main/java/com/baeldung/shared/MessageServiceAsync.java
T

11 lines
290 B
Java
Raw Normal View History

package com.baeldung.shared;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* The async counterpart of <code>MessageService</code>.
*/
public interface MessageServiceAsync {
void sendMessage(String input, AsyncCallback<String> callback) throws IllegalArgumentException;
}