pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/protocol/PrefixedDataAvailable.java
@@ -3,6 +3,7 @@
import org.apache.mina.core.buffer.IoBuffer;
import com.dy.common.mw.channel.tcp.PrefixedDataAvailableStatus;
import org.apache.mina.core.session.IoSession;
public interface PrefixedDataAvailable {
@@ -15,7 +16,8 @@
    * @return 不时本协议数据时返回空
    * @throws Exception 异常
    */
   PrefixedDataAvailableStatus forOnLine(IoBuffer in,
   PrefixedDataAvailableStatus forOnLine(IoSession ioSession,
                                IoBuffer in,
         int remain,
         int minDataLength,
         int maxDataLength) throws Exception ;
@@ -29,7 +31,8 @@
    * @return PrefixedDataAvailableStatus
    * @throws Exception 异常
    */
   PrefixedDataAvailableStatus forUpData(IoBuffer in,
   PrefixedDataAvailableStatus forUpData(IoSession ioSession,
                                IoBuffer in,
         int remain,
         int minDataLength,
         int maxDataLength) throws Exception;