Uses of Interface
org.apache.tinkerpop.gremlin.structure.io.Io
-
-
Uses of Io in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure with type parameters of type Io Modifier and Type Method Description default <I extends Io>
IGraph. io(Io.Builder<I> builder)
Deprecated.As of release 3.4.0, partially replaced byGraphTraversalSource.io(String)
. -
Uses of Io in org.apache.tinkerpop.gremlin.structure.io
Classes in org.apache.tinkerpop.gremlin.structure.io with type parameters of type Io Modifier and Type Interface Description static interface
Io.Builder<I extends Io>
Helps to construct anIo
implementation and should be implemented by every such implementation as that class will be passed toGraph.io(Io.Builder)
by the user.Methods in org.apache.tinkerpop.gremlin.structure.io that return types with arguments of type Io Modifier and Type Method Description Io.Builder<? extends Io>
Io.Builder. graph(Graph g)
Providers use this method to supply the current instance of theirGraph
to the builder.Io.Builder<? extends Io>
Io.Builder. onMapper(Consumer<Mapper.Builder> onMapper)
Allows aGraph
implementation to have full control over theMapper.Builder
instance.Method parameters in org.apache.tinkerpop.gremlin.structure.io with type arguments of type Io Modifier and Type Method Description List<org.javatuples.Pair<Class,Object>>
AbstractIoRegistry. find(Class<? extends Io> builderClass)
<S> List<org.javatuples.Pair<Class,S>>
AbstractIoRegistry. find(Class<? extends Io> builderClass, Class<S> serializerType)
List<org.javatuples.Pair<Class,Object>>
IoRegistry. find(Class<? extends Io> builderClass)
<S> List<org.javatuples.Pair<Class,S>>
IoRegistry. find(Class<? extends Io> builderClass, Class<S> serializerType)
protected void
AbstractIoRegistry. register(Class<? extends Io> ioClass, Class clazz, Object serializer)
Add a "serializer" for theMapper
. -
Uses of Io in org.apache.tinkerpop.gremlin.structure.io.binary
Classes in org.apache.tinkerpop.gremlin.structure.io.binary that implement Io Modifier and Type Class Description class
GraphBinaryIo
This is a dummy implementation ofIo
which is only used in the context of helping to configure a GraphBinaryMessageSerializer
with anIoRegistry
. -
Uses of Io in org.apache.tinkerpop.gremlin.structure.io.graphml
Classes in org.apache.tinkerpop.gremlin.structure.io.graphml that implement Io Modifier and Type Class Description class
GraphMLIo
Constructs GraphML IO implementations given aGraph
andIoRegistry
.Methods in org.apache.tinkerpop.gremlin.structure.io.graphml that return types with arguments of type Io Modifier and Type Method Description Io.Builder<? extends Io>
GraphMLIo.Builder. onMapper(Consumer<Mapper.Builder> onMapper)
-
Uses of Io in org.apache.tinkerpop.gremlin.structure.io.graphson
Classes in org.apache.tinkerpop.gremlin.structure.io.graphson that implement Io Modifier and Type Class Description class
GraphSONIo
Constructs GraphSON IO implementations given aGraph
andIoRegistry
.Methods in org.apache.tinkerpop.gremlin.structure.io.graphson that return types with arguments of type Io Modifier and Type Method Description Io.Builder<? extends Io>
GraphSONIo.Builder. onMapper(Consumer<Mapper.Builder> onMapper)
-
Uses of Io in org.apache.tinkerpop.gremlin.structure.io.gryo
Classes in org.apache.tinkerpop.gremlin.structure.io.gryo that implement Io Modifier and Type Class Description class
GryoIo
Constructs Gryo IO implementations given aGraph
andIoRegistry
.Methods in org.apache.tinkerpop.gremlin.structure.io.gryo that return types with arguments of type Io Modifier and Type Method Description Io.Builder<? extends Io>
GryoIo.Builder. onMapper(Consumer<Mapper.Builder> onMapper)
-
Uses of Io in org.apache.tinkerpop.gremlin.tinkergraph.structure
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with type parameters of type Io Modifier and Type Method Description <I extends Io>
ITinkerGraph. io(Io.Builder<I> builder)
-