1 3 23 package org.xsocket; 24 25 26 import java.io.IOException ; 27 28 29 30 35 public interface IEventHandler<T extends IHandle> { 36 37 43 public void onHandleRegisterEvent(T handle) throws IOException ; 44 45 46 47 53 public void onHandleReadableEvent(T handle) throws IOException ; 54 55 56 62 public void onHandleWriteableEvent(T handle) throws IOException ; 63 64 65 66 71 public void onDispatcherCloseEvent(T handle); 72 73 } | Popular Tags |