1 22 package org.xsocket.stream; 23 24 import java.io.IOException ; 25 import java.nio.BufferUnderflowException ; 26 27 import org.xsocket.MaxReadSizeExceededException; 28 29 30 31 32 33 34 35 36 67 public interface IDataHandler extends IHandler { 68 69 89 public boolean onData(INonBlockingConnection connection) throws IOException , BufferUnderflowException , MaxReadSizeExceededException; 90 } 91 | Popular Tags |