Click or drag to resize

StoreVirtualGraphPersistenceWrapperTNodeID, 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.StorageIStorageProvider
Generic IO Manager.
provider
Type: VDS.RDF.Storage.VirtualisationIVirtualRdfProviderTNodeID, TGraphID
Virtual RDF Provider.
g
Type: VDS.RDFIGraph
Graph with virtualized Nodes to wrap.
graphUri
Type: SystemUri
Graph URI (the URI the Graph will be persisted as).
writeOnly
Type: SystemBoolean
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