class NetStreamReceiver.DefaultUnpacker extends NetStreamUnpacker
Constructor and Description |
---|
NetStreamReceiver.DefaultUnpacker() |
Modifier and Type | Method and Description |
---|---|
int |
sizeOfInt()
An unpacker has to be abble to indicated what is the size of an int after being packed.
|
java.nio.ByteBuffer |
unpackMessage(java.nio.ByteBuffer buffer,
int startIndex,
int endIndex)
Unpack the given ByteBuffer from startIndex to endIdex
|
int |
unpackMessageSize(java.nio.ByteBuffer buffer)
Unpacks the data necessary to decode a 4 bytes integer that indicates the size of the following message.
|
unpackMessage
public java.nio.ByteBuffer unpackMessage(java.nio.ByteBuffer buffer, int startIndex, int endIndex)
NetStreamUnpacker
unpackMessage
in class NetStreamUnpacker
buffer
- The buffer to unpack/decodestartIndex
- the index at which the decoding starts in the bufferendIndex
- the index at which the decoding stopspublic int unpackMessageSize(java.nio.ByteBuffer buffer)
NetStreamUnpacker
unpackMessageSize
in class NetStreamUnpacker
buffer
- The byteBuffer who's content has the encoded value of the needed size integer.public int sizeOfInt()
NetStreamUnpacker
sizeOfInt
in class NetStreamUnpacker