ImDecoder.java 393 B

1234567891011121314151617181920
  1. /**
  2. *
  3. */
  4. package org.jim.common;
  5. import java.nio.ByteBuffer;
  6. import org.tio.core.ChannelContext;
  7. import org.tio.core.exception.AioDecodeException;
  8. /**
  9. * 版本: [1.0]
  10. * 功能说明:
  11. * 作者: WChao 创建时间: 2017年7月27日 下午5:25:13
  12. */
  13. public interface ImDecoder {
  14. public ImPacket decode(ByteBuffer buffer, ChannelContext channelContext) throws AioDecodeException;
  15. }