Class EdgeSerializer
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.structure.io.binary.types.SimpleTypeSerializer<Edge>
-
- org.apache.tinkerpop.gremlin.structure.io.binary.types.EdgeSerializer
-
- All Implemented Interfaces:
TypeSerializer<Edge>
public class EdgeSerializer extends SimpleTypeSerializer<Edge>
- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Constructor Summary
Constructors Constructor Description EdgeSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EdgereadValue(Buffer buffer, GraphBinaryReader context)Reads a non-nullable value according to the type format.protected voidwriteValue(Edge value, Buffer buffer, GraphBinaryWriter context)Writes a non-nullable value into a buffer using the provided allocator.-
Methods inherited from class org.apache.tinkerpop.gremlin.structure.io.binary.types.SimpleTypeSerializer
getDataType, read, readValue, write, writeValue
-
-
-
-
Method Detail
-
readValue
protected Edge readValue(Buffer buffer, GraphBinaryReader context) throws IOException
Description copied from class:SimpleTypeSerializerReads a non-nullable value according to the type format.- Specified by:
readValuein classSimpleTypeSerializer<Edge>- Parameters:
buffer- A buffer which reader index has been set to the beginning of the {value}.context- The binary reader.- Returns:
- Throws:
IOException
-
writeValue
protected void writeValue(Edge value, Buffer buffer, GraphBinaryWriter context) throws IOException
Description copied from class:SimpleTypeSerializerWrites a non-nullable value into a buffer using the provided allocator.- Specified by:
writeValuein classSimpleTypeSerializer<Edge>- Parameters:
value- A non-nullable value.buffer- The buffer allocator to use.context- The binary writer.- Throws:
IOException
-
-