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