GraphImportGraphJson Method (Stream, Int32) |
Input the GrapJson JSON stream data into the graph.
In practice, usually the provided graph is empty.
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public void ImportGraphJson(
Stream grapJsonInputStream,
int bufferSize = 1000
)
Public Sub ImportGraphJson (
grapJsonInputStream As Stream,
Optional bufferSize As Integer = 1000
)
public:
void ImportGraphJson(
Stream^ grapJsonInputStream,
int bufferSize = 1000
)
member ImportGraphJson :
grapJsonInputStream : Stream *
?bufferSize : int
(* Defaults:
let _bufferSize = defaultArg bufferSize 1000
*)
-> unit
Parameters
- grapJsonInputStream
- Type: System.IOStream
an Stream of GraphJson JSON data - bufferSize (Optional)
- Type: SystemInt32
the amount of elements to hold in memory before committing a transactions
See Also