You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
284 B

package com.inspect.tcpserver.tcp;
import io.netty.buffer.ByteBuf;
public class BinaryModel {
public long sendIndex;
public long receiveIndex;
public byte sourceFlag;
public int dataLength;
public ByteBuf dataBuf;
public String id;
public String uuid;
}