Click or drag to resize

IAsyncUpdateableStorage Interface

Interface for storage providers which allow SPARQL Updates to be made against them asynchronously.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface IAsyncUpdateableStorage : IAsyncQueryableStorage, 
	IAsyncStorageProvider, IStorageCapabilities, IDisposable

The IAsyncUpdateableStorage type exposes the following members.

Properties
  NameDescription
Public propertyAsyncParentServer
Gets the Parent Server on which this store is hosted (if any).
(Inherited from IAsyncStorageProvider.)
Public propertyDeleteSupported
Gets whether the deletion of graphs is supported.
(Inherited from IStorageCapabilities.)
Public propertyIOBehaviour
Gets the Save Behaviour the Store uses.
(Inherited from IStorageCapabilities.)
Public propertyIsReadOnly
Gets whether the connection with the underlying Store is read-only.
(Inherited from IStorageCapabilities.)
Public propertyIsReady
Gets whether the connection with the underlying Store is ready for use.
(Inherited from IStorageCapabilities.)
Public propertyListGraphsSupported
Gets whether the Store supports Listing Graphs.
(Inherited from IStorageCapabilities.)
Public propertyUpdateSupported
Gets whether the triple level updates are supported.
(Inherited from IStorageCapabilities.)
Top
Methods
  NameDescription
Public methodDeleteGraph(String, AsyncStorageCallback, Object)
Deletes a Graph from the Store.
(Inherited from IAsyncStorageProvider.)
Public methodDeleteGraph(Uri, AsyncStorageCallback, Object)
Deletes a Graph from the Store.
(Inherited from IAsyncStorageProvider.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodListGraphs
Lists the Graphs in the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodLoadGraph(IGraph, String, AsyncStorageCallback, Object)
Loads a Graph from the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodLoadGraph(IGraph, Uri, AsyncStorageCallback, Object)
Loads a Graph from the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodLoadGraph(IRdfHandler, String, AsyncStorageCallback, Object)
Loads a Graph from the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodLoadGraph(IRdfHandler, Uri, AsyncStorageCallback, Object)
Loads a Graph from the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodQuery(String, AsyncStorageCallback, Object)
Queries the store asynchronously.
(Inherited from IAsyncQueryableStorage.)
Public methodQuery(IRdfHandler, ISparqlResultsHandler, String, AsyncStorageCallback, Object)
Queries the store asynchronously.
(Inherited from IAsyncQueryableStorage.)
Public methodSaveGraph
Saves a Graph to the Store asynchronously.
(Inherited from IAsyncStorageProvider.)
Public methodUpdate
Updates the store asynchronously.
Public methodUpdateGraph(String, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object)
Updates a Graph in the Store asychronously.
(Inherited from IAsyncStorageProvider.)
Public methodUpdateGraph(Uri, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object)
Updates a Graph in the Store asychronously.
(Inherited from IAsyncStorageProvider.)
Top
See Also