public abstract class SimpleTypeSerializer<T> extends Object implements TypeSerializer<T>
| Constructor and Description |
|---|
SimpleTypeSerializer(DataType dataType) |
| Modifier and Type | Method and Description |
|---|---|
DataType |
getDataType()
Gets the
DataType that is represented by the given T. |
T |
read(ByteBuf buffer,
GraphBinaryReader context)
Reads the type information and value from the buffer and returns an instance of T.
|
protected abstract T |
readValue(ByteBuf buffer,
GraphBinaryReader context)
Reads a non-nullable value according to the type format.
|
T |
readValue(ByteBuf buffer,
GraphBinaryReader context,
boolean nullable)
Reads the value from the buffer (not the type information) and returns an instance of T.
|
void |
write(T value,
ByteBuf buffer,
GraphBinaryWriter context)
Writes the type code, information and value to a buffer using the provided allocator.
|
protected abstract void |
writeValue(T value,
ByteBuf buffer,
GraphBinaryWriter context)
Writes a non-nullable value into a buffer using the provided allocator.
|
void |
writeValue(T value,
ByteBuf buffer,
GraphBinaryWriter context,
boolean nullable)
Writes the value to a buffer, composed by the value flag and the sequence of bytes.
|
public SimpleTypeSerializer(DataType dataType)
public DataType getDataType()
TypeSerializerDataType that is represented by the given T.getDataType in interface TypeSerializer<T>public T read(ByteBuf buffer, GraphBinaryReader context) throws SerializationException
TypeSerializerread in interface TypeSerializer<T>SerializationExceptionpublic T readValue(ByteBuf buffer, GraphBinaryReader context, boolean nullable) throws SerializationException
TypeSerializerImplementors should throw an exception when a complex type doesn't support reading without the type information.
readValue in interface TypeSerializer<T>SerializationExceptionprotected abstract T readValue(ByteBuf buffer, GraphBinaryReader context) throws SerializationException
buffer - A buffer which reader index has been set to the beginning of the {value}.context - The binary writer.SerializationExceptionpublic void write(T value, ByteBuf buffer, GraphBinaryWriter context) throws SerializationException
TypeSerializerwrite in interface TypeSerializer<T>SerializationExceptionpublic void writeValue(T value, ByteBuf buffer, GraphBinaryWriter context, boolean nullable) throws SerializationException
TypeSerializerwriteValue in interface TypeSerializer<T>SerializationExceptionprotected abstract void writeValue(T value, ByteBuf buffer, GraphBinaryWriter context) throws SerializationException
value - A non-nullable value.buffer - The buffer allocator to use.context - The binary writer.SerializationExceptionCopyright © 2013–2019 Apache Software Foundation. All rights reserved.