Class GraphBinaryIo
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.structure.io.binary.GraphBinaryIo
 
- 
- All Implemented Interfaces:
- Io
 
 public class GraphBinaryIo extends Object implements Io This is a dummy implementation ofIowhich is only used in the context of helping to configure a GraphBinaryMessageSerializerwith anIoRegistry. It's methods are not implemented.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.io.IoIo.Builder<I extends Io>, Io.Exceptions
 
- 
 - 
Constructor SummaryConstructors Constructor Description GraphBinaryIo()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Mapper.Buildermapper()Constructs aMapper.Builderwhich is responsible for constructing the abstraction over different serialization methods.GraphReader.ReaderBuilderreader()Creates aGraphReader.ReaderBuilderimplementation .voidreadGraph(String file)Read aGraphfrom file using the default configuration of theIo.reader()and its suppliedIo.mapper().voidwriteGraph(String file)Write aGraphto file using the default configuration of theIo.writer()and its suppliedIo.mapper().GraphWriter.WriterBuilderwriter()Creates aGraphWriter.WriterBuilderimplementation .
 
- 
- 
- 
Method Detail- 
readerpublic GraphReader.ReaderBuilder reader() Description copied from interface:IoCreates aGraphReader.ReaderBuilderimplementation . Implementers should call theIo.mapper()function to feed its result to the builder. In this way, custom class serializers registered to theMapper.BuilderbyGraphimplementations will end up being used for the serialization process.
 - 
writerpublic GraphWriter.WriterBuilder writer() Description copied from interface:IoCreates aGraphWriter.WriterBuilderimplementation . Implementers should call theIo.mapper()function to feed its result to the builder. In this way, custom class serializers registered to theMapper.BuilderbyGraphimplementations will end up being used for the serialization process.
 - 
mapperpublic Mapper.Builder mapper() Description copied from interface:IoConstructs aMapper.Builderwhich is responsible for constructing the abstraction over different serialization methods. Implementations should set defaults as required, but most importantly need to make the appropriate call toMapper.Builder.addRegistry(IoRegistry)which will provide the builder with any required custom serializers of theGraph.
 - 
writeGraphpublic void writeGraph(String file) throws IOException Description copied from interface:IoWrite aGraphto file using the default configuration of theIo.writer()and its suppliedIo.mapper().- Specified by:
- writeGraphin interface- Io
- Throws:
- IOException
 
 - 
readGraphpublic void readGraph(String file) throws IOException Description copied from interface:IoRead aGraphfrom file using the default configuration of theIo.reader()and its suppliedIo.mapper().- Specified by:
- readGraphin interface- Io
- Throws:
- IOException
 
 
- 
 
-