#
zwl
2025-11-13 e305c2c64ae1dc96d471c68b1f595b62da32de69
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);
 
}