#
tqs
2022-09-26 7d8b1dba7cf7a77b7955a0ed10d1bd7fa8947db6
1
2
3
4
5
6
7
8
9
10
11
package com.zy.core.netty;
 
public interface IMessageBody {
 
    int DEFAULT_LEN = 256;
 
    byte[] writeToBytes();
 
    IMessageBody readFromBytes(byte[] bytes);
 
}