Uses of Class
com.franz.agraph.http.handler.AGResponseHandler
Package
Description
AllegroGraph Java client HTTP layer for the
AllegroGraph HTTP Protocol, used by
com.franz.agraph.repository
and com.franz.agraph.jena
.AllegroGraph Java client HTTP layer response handlers for the
AllegroGraph HTTP Protocol in support of
com.franz.agraph.http
.-
Uses of AGResponseHandler in com.franz.agraph.http
Modifier and TypeMethodDescriptionvoid
AGHTTPClient.delete
(String url, org.apache.http.Header[] headers, org.apache.http.NameValuePair[] params, AGResponseHandler handler) void
AGHttpRepoClient.evalFreetextQuery
(String pattern, String expression, String index, boolean sorted, int limit, int offset, AGResponseHandler handler) void
AGHTTPClient.get
(String url, org.apache.http.Header[] headers, org.apache.http.NameValuePair[] params, AGResponseHandler handler) void
AGHttpRepoClient.getGeoBox
(String type_uri, String predicate_uri, float xmin, float xmax, float ymin, float ymax, int limit, boolean infer, AGResponseHandler handler) void
AGHttpRepoClient.getGeoCircle
(String type_uri, String predicate_uri, float x, float y, float radius, int limit, boolean infer, AGResponseHandler handler) void
AGHttpRepoClient.getGeoHaversine
(String type_uri, String predicate_uri, float lat, float lon, float radius, String unit, int limit, boolean infer, AGResponseHandler handler) void
AGHttpRepoClient.getGeoPolygon
(String type_uri, String predicate_uri, String polygon, int limit, boolean infer, AGResponseHandler handler) void
AGHttpRepoClient.getStatements
(AGResponseHandler handler, String... ids) void
AGHttpRepoClient.getStatements
(Resource subj, IRI pred, Value obj, String includeInferred, AGResponseHandler handler, Resource... contexts) void
AGHttpRepoClient.getStatementsCountLimit
(int limit, Resource subj, IRI pred, Value obj, String includeInferred, AGResponseHandler handler, Resource... contexts) Retrieves the count of statements matching the provided subject, predicate, object and contexts, but does not read more than a specified number of statements; feeds the result to the response handler.void
AGHttpRepoClient.getStatementsLimit
(int limit, Resource subj, IRI pred, Value obj, String includeInferred, AGResponseHandler handler, Resource... contexts) Retrieves up to a specified number of statements matching the provided subject, predicate, object and contexts, and feeds the result to the response handler.void
AGHTTPClient.post
(String url, org.apache.http.Header[] headers, org.apache.http.NameValuePair[] params, org.apache.http.HttpEntity requestEntity, AGResponseHandler handler) void
AGHTTPClient.put
(String url, org.apache.http.Header[] headers, org.apache.http.NameValuePair[] params, org.apache.http.HttpEntity requestEntity, AGResponseHandler handler) void
AGHttpRepoClient.query
(AGQuery q, boolean analyzeOnly, AGResponseHandler handler) -
Uses of AGResponseHandler in com.franz.agraph.http.handler
Modifier and TypeClassDescriptionclass
class
class
A response handler that writes the returned body to a file.class
class
class
class
class
A handler that allows access to raw response stream.class
class
class
class
Similar toSPARQLResultsXMLParser
but uses rdf4j-like JSON parsing instead of SAXParser so the results streaming in the http response can be processed in aTupleQueryResult
pulling from the JSON stream.class
class
Similar toSPARQLResultsXMLParser
but uses rdf4j-like TSV parsing instead of SAXParser so the results streaming in the http response can be processed in aTupleQueryResult
pulling from the TSV stream.class
Similar toSPARQLResultsXMLParser
but usesXMLStreamReader
instead of SAXParser so the results streaming in the http response can be processed in aTupleQueryResult
pulling from the stream.