#
tqs
2022-09-29 0efe1f37c9d833138ac8afca225b790cb5a5b366
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);
 
}