hxb
2021-12-08 7ae3378cab3a872f0f1bc8dfbc4dd9fad303d875
1
2
3
4
5
6
7
8
9
10
package com.hdl.sdk.socket.codec;
 
/**
 * Created by Tong on 2021/9/27.
 */
public interface IHandleMessage {
    void read(byte[] data) throws Exception;
 
    byte[] write(byte[] data) throws Exception;
}