QueryProcessorBaseProcessQuery Method (SparqlQuery, GraphCallback, SparqlResultsCallback, Object) |
Processes a SPARQL Query asynchronously invoking the relevant callback when the query completes.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public void ProcessQuery(
SparqlQuery query,
GraphCallback rdfCallback,
SparqlResultsCallback resultsCallback,
Object state
)
Public Sub ProcessQuery (
query As SparqlQuery,
rdfCallback As GraphCallback,
resultsCallback As SparqlResultsCallback,
state As Object
)
Parameters
- query
- Type: VDS.RDF.QuerySparqlQuery
SPARQL QUery. - rdfCallback
- Type: VDS.RDFGraphCallback
Callback for queries that return a Graph. - resultsCallback
- Type: VDS.RDFSparqlResultsCallback
Callback for queries that return a Result Set. - state
- Type: SystemObject
State to pass to the callback.
Remarks
In the event of a success the appropriate callback will be invoked, if there is an error both callbacks will be invoked and passed an instance of
AsyncError which contains details of the error and the original state information passed in.
See Also