IMessageBody02.java 355 Bytes
package com.bsth.socket.protocol;

/**
 * @author Hill
 */
public interface IMessageBody02 {

	/**
	 * 根据字节数组组装实时信息体数据
	 * @param bytes 字节数组
	 */
	public void read(byte[] bytes, int idx);

	/**
	 * 获取实时信息体内容字节长度
	 * @return 实时信息体内容字节长度
	 */
	public int getByteLen();
}