use of org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter in project incubator-atlas by apache.
the class Titan1Graph method exportToGson.
@Override
public void exportToGson(OutputStream os) throws IOException {
GraphSONMapper mapper = getGraph().io(IoCore.graphson()).mapper().create();
GraphSONWriter.Builder builder = GraphSONWriter.build();
builder.mapper(mapper);
GraphSONWriter writer = builder.create();
writer.writeGraph(os, getGraph());
}
Aggregations