Class GryoIo
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.structure.io.gryo.GryoIo
 
- 
- All Implemented Interfaces:
- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
 
 public final class GryoIo extends Object implements Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder> Constructs Gryo IO implementations given aGraphandIoRegistry. Implementers of theGraphinterfaces should see theGryoMapperfor information on the expectations for theIoRegistry.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classGryoIo.Builder- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.io.IoIo.Exceptions
 
- 
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Io.Builder<GryoIo>build()Create a new builder using the default version of Gryo - v3.static Io.Builder<GryoIo>build(GryoVersion version)Create a new builder using the specified version of Gryo.GryoMapper.Buildermapper()Constructs aMapper.Builderwhich is responsible for constructing the abstraction over different serialization methods.GryoReader.Builderreader()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().GryoWriter.Builderwriter()Creates aGraphWriter.WriterBuilderimplementation .
 
- 
- 
- 
Method Detail- 
readerpublic GryoReader.Builder reader() Creates 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.- Specified by:
- readerin interface- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
 
 - 
writerpublic GryoWriter.Builder writer() Creates 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.- Specified by:
- writerin interface- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
 
 - 
mapperpublic GryoMapper.Builder mapper() Constructs 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.- Specified by:
- mapperin interface- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
 
 - 
writeGraphpublic void writeGraph(String file) throws IOException Write aGraphto file using the default configuration of theIo.writer()and its suppliedIo.mapper().- Specified by:
- writeGraphin interface- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
- Throws:
- IOException
 
 - 
readGraphpublic void readGraph(String file) throws IOException Read aGraphfrom file using the default configuration of theIo.reader()and its suppliedIo.mapper().- Specified by:
- readGraphin interface- Io<GryoReader.Builder,GryoWriter.Builder,GryoMapper.Builder>
- Throws:
- IOException
 
 - 
buildpublic static Io.Builder<GryoIo> build() Create a new builder using the default version of Gryo - v3.
 - 
buildpublic static Io.Builder<GryoIo> build(GryoVersion version) Create a new builder using the specified version of Gryo.
 
- 
 
-