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:
Syntaxpublic StoreVirtualGraphPersistenceWrapper(
IStorageProvider manager,
IVirtualRdfProvider<TNodeID, TGraphID> provider,
IGraph g,
Uri graphUri,
bool writeOnly
)
Public Sub New (
manager As IStorageProvider,
provider As IVirtualRdfProvider(Of TNodeID, TGraphID),
g As IGraph,
graphUri As Uri,
writeOnly As Boolean
)
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.
RemarksNote: 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