package com.zy.core.netty; public interface IMessageBody { int DEFAULT_LEN = 256; byte[] writeToBytes(); IMessageBody readFromBytes(byte[] bytes); }