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