Click or drag to resize

StoreVirtualGraphPersistenceWrapper<TNodeID, TGraphID> Constructor

Creates a new Store Graph Persistence Wrapper for Virtualized Nodes.

Namespace:  VDS.RDF.Storage.Virtualisation
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public StoreVirtualGraphPersistenceWrapper(
	IStorageProvider manager,
	IVirtualRdfProvider<TNodeID, TGraphID> provider,
	IGraph g,
	Uri graphUri,
	bool writeOnly
)

Parameters

manager
Type: VDS.RDF.Storage.IStorageProvider
Generic IO Manager.
provider
Type: VDS.RDF.Storage.Virtualisation.IVirtualRdfProvider<TNodeID, TGraphID>
Virtual RDF Provider.
g
Type: VDS.RDF.IGraph
Graph with virtualized Nodes to wrap.
graphUri
Type: System.Uri
Graph URI (the URI the Graph will be persisted as).
writeOnly
Type: System.Boolean
Whether to operate in write-only mode.
Remarks

Note: In order to operate in write-only mode the IStorageProvider must support triple level updates indicated by it returning true to its UpdateSupported property and the Graph to be wrapped must be an empty Graph.

See Also