Package org.apache.jena.update
Interface UpdateProcessorStreaming
-
- All Known Implementing Classes:
UpdateProcessorStreamingBase
public interface UpdateProcessorStreaming
An instance of a parsing and execution of an UpdateRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
finishRequest()
Finish the request, call after putting updates into the SinkContext
getContext()
The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).DatasetGraph
getDatasetGraph()
The dataset against which the query will execute.Prologue
getPrologue()
Prologue for the UpdateRequestUpdateSink
getUpdateSink()
The UpdateSink into which Updates are added and executedvoid
startRequest()
Start the request, call before putting updates into the Sink
-
-
-
Method Detail
-
getContext
Context getContext()
The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph). Keys should be URIs as strings. May be null (this implementation does not provide any configuration).
-
getPrologue
Prologue getPrologue()
Prologue for the UpdateRequest
-
getDatasetGraph
DatasetGraph getDatasetGraph()
The dataset against which the query will execute. May be null, implying the there isn't a local GraphStore target for this UpdateProcessor.
-
startRequest
void startRequest()
Start the request, call before putting updates into the Sink
-
finishRequest
void finishRequest()
Finish the request, call after putting updates into the Sink
-
getUpdateSink
UpdateSink getUpdateSink()
The UpdateSink into which Updates are added and executed
-
-