public static class ByteArrayUtil.VarintSerializer extends Object implements ByteBufferSerializer<Integer>
Modifier | Constructor and Description |
---|---|
protected |
ByteArrayUtil.VarintSerializer()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
Integer |
fromByteBuffer(ByteBuffer buffer)
Deserialize an object from a byte buffer (e.g. disk)
|
int |
getByteSize(Integer object)
Get the size of the object in bytes.
|
void |
toByteBuffer(ByteBuffer buffer,
Integer obj)
Serialize the object to a byte array (e.g. disk)
|
protected ByteArrayUtil.VarintSerializer()
public Integer fromByteBuffer(ByteBuffer buffer)
ByteBufferSerializer
fromByteBuffer
in interface ByteBufferSerializer<Integer>
buffer
- Data array to processpublic void toByteBuffer(ByteBuffer buffer, Integer obj)
ByteBufferSerializer
toByteBuffer
in interface ByteBufferSerializer<Integer>
buffer
- Buffer to serialize toobj
- Object to serializepublic int getByteSize(Integer object)
ByteBufferSerializer
getByteSize
in interface ByteBufferSerializer<Integer>
object
- Object to serialize