野心家
2023-08-28 167d58392c667c7ab02de2d5a9f86c8a7842520f
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);
 
}