3225470df5
Revert "BAEL-3275: Using blocking queue for pub-sub"
11 lines
290 B
Java
11 lines
290 B
Java
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;
|
|
}
|