Click or drag to resize

GraphSonReader.InputGraph Method (IGraph, String, Int32, IEnumerable<String>, IEnumerable<String>)

Input the JSON stream data into the graph. More control over how data is streamed is provided by this method.

Namespace:  VelocityGraph.Frontenac.Blueprints.Util.IO.GraphSON
Assembly:  VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax
public static void InputGraph(
	IGraph inputGraph,
	string filename,
	int bufferSize,
	IEnumerable<string> edgePropertyKeys,
	IEnumerable<string> vertexPropertyKeys
)

Parameters

inputGraph
Type: VelocityGraph.Frontenac.Blueprints.IGraph
the graph to populate with the JSON data
filename
Type: System.String
name of a file of JSON data
bufferSize
Type: System.Int32
the amount of elements to hold in memory before committing a transactions (only valid for TransactionalGraphs)
edgePropertyKeys
Type: System.Collections.Generic.IEnumerable<String>

[Missing <param name="edgePropertyKeys"/> documentation for "M:VelocityGraph.Frontenac.Blueprints.Util.IO.GraphSON.GraphSonReader.InputGraph(VelocityGraph.Frontenac.Blueprints.IGraph,System.String,System.Int32,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})"]

vertexPropertyKeys
Type: System.Collections.Generic.IEnumerable<String>

[Missing <param name="vertexPropertyKeys"/> documentation for "M:VelocityGraph.Frontenac.Blueprints.Util.IO.GraphSON.GraphSonReader.InputGraph(VelocityGraph.Frontenac.Blueprints.IGraph,System.String,System.Int32,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})"]

See Also