Class AbstractHTTPQuery
java.lang.Object
org.eclipse.rdf4j.query.impl.AbstractOperation
org.eclipse.rdf4j.query.impl.AbstractQuery
org.eclipse.rdf4j.http.client.query.AbstractHTTPQuery
- Direct Known Subclasses:
HTTPBooleanQuery
,HTTPGraphQuery
,HTTPTupleQuery
,SPARQLBooleanQuery
,SPARQLGraphQuery
,SPARQLTupleQuery
Base class for any
Query
operation over HTTP.- Author:
- Andreas Schwarte
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.rdf4j.query.Query
Query.QueryType
-
Field Summary
Modifier and TypeFieldDescriptionprotected final String
protected final QueryLanguage
protected final String
Fields inherited from class org.eclipse.rdf4j.query.impl.AbstractOperation
bindings, dataset, includeInferred
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractHTTPQuery
(SPARQLProtocolSession httpClient, QueryLanguage queryLanguage, String queryString, String baseURI) -
Method Summary
Modifier and TypeMethodDescriptionBinding[]
protected SPARQLProtocolSession
void
setMaxExecutionTime
(int maxExecutionTimeSeconds) Specifies the maximum time that an operation is allowed to run.toString()
Methods inherited from class org.eclipse.rdf4j.query.impl.AbstractQuery
getMaxQueryTime, setMaxQueryTime
Methods inherited from class org.eclipse.rdf4j.query.impl.AbstractOperation
clearBindings, getBindings, getDataset, getIncludeInferred, getMaxExecutionTime, removeBinding, setBinding, setDataset, setIncludeInferred
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.query.Operation
clearBindings, getBindings, getDataset, getIncludeInferred, getMaxExecutionTime, removeBinding, setBinding, setDataset, setIncludeInferred
-
Field Details
-
queryLanguage
-
queryString
-
baseURI
-
-
Constructor Details
-
AbstractHTTPQuery
protected AbstractHTTPQuery(SPARQLProtocolSession httpClient, QueryLanguage queryLanguage, String queryString, String baseURI)
-
-
Method Details
-
getHttpClient
- Returns:
- Returns the
SPARQLProtocolSession
to be used for all HTTP based interaction
-
getBindingsArray
-
setMaxExecutionTime
public void setMaxExecutionTime(int maxExecutionTimeSeconds) Description copied from interface:Operation
Specifies the maximum time that an operation is allowed to run. The operation will be interrupted when it exceeds the time limit. Any consecutive requests to fetch query results will result inQueryInterruptedException
s orUpdateExecutionException
s (depending on whether the operation is a query or an update).- Specified by:
setMaxExecutionTime
in interfaceOperation
- Overrides:
setMaxExecutionTime
in classAbstractOperation
- Parameters:
maxExecutionTimeSeconds
- The maximum query time, measured in seconds. A negative or zero value indicates an unlimited execution time (which is the default).
-
toString
-