1 4 package nl.justobjects.pushlet.client; 5 6 import nl.justobjects.pushlet.core.Event; 7 import nl.justobjects.pushlet.core.Protocol; 8 9 15 public interface PushletClientListener extends Protocol { 16 17 public void onAbort(Event theEvent); 18 19 20 public void onData(Event theEvent); 21 22 23 public void onHeartbeat(Event theEvent); 24 25 26 public void onError(String message); 27 } 28 29 | Popular Tags |