#
tqs
2022-10-08 6a5ddb4ec84f852760bfc28d2e1f968b0db8e5dd
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);
 
}