diarybooker
diarybooker
I created one myself: `package no.eirikb.gwtchannelapi.client;` `import com.google.gwt.user.client.rpc.AsyncCallback;` `public interface ChannelListenerAsync { void onMessage(String message,AsyncCallback asyncCallback);` `void onOpen(AsyncCallback asyncCallback);` `void onError(int code, String description, AsyncCallback asyncCallback);` `void onClose(AsyncCallback asyncCallback);` `}`
Your Server code uses "send" but your client code used "onMessage" This also means there is a compiler error initially because it says you have not implemented "onMessage" in the...