Package org.eclipse.rdf4j.query.impl
Class BackgroundGraphResult
java.lang.Object
org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration<E,X>
org.eclipse.rdf4j.common.iteration.IterationWrapper<Statement,QueryEvaluationException>
org.eclipse.rdf4j.query.impl.BackgroundGraphResult
- All Implemented Interfaces:
AutoCloseable
,Iterable<Statement>
,Runnable
,CloseableIteration<Statement,
,QueryEvaluationException> Iteration<Statement,
,QueryEvaluationException> GraphQueryResult
,QueryResult<Statement>
,RDFHandler
@Deprecated(since="4.1.0")
public class BackgroundGraphResult
extends IterationWrapper<Statement,QueryEvaluationException>
implements GraphQueryResult, Runnable, RDFHandler
Deprecated.
Provides concurrent access to statements as they are being parsed when instances of this class are run as Threads.
- Author:
- James Leigh
-
Field Summary
Fields inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
wrappedIter
-
Constructor Summary
ConstructorDescriptionBackgroundGraphResult
(QueueCursor<Statement> queue, RDFParser parser, InputStream in, Charset charset, String baseURI) Deprecated.BackgroundGraphResult
(RDFParser parser, InputStream in, Charset charset, String baseURI, WeakReference<?> callerRef) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoid
endRDF()
Deprecated.Signals the end of the RDF data.Deprecated.Retrieves relevant namespaces from the query result.protected void
Deprecated.Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.void
handleComment
(String comment) Deprecated.Handles a comment.void
handleNamespace
(String prefix, String uri) Deprecated.Handles a namespace declaration/definition.void
Deprecated.Handles a statement.void
run()
Deprecated.void
startRDF()
Deprecated.Signals the start of the RDF data.Methods inherited from class org.eclipse.rdf4j.common.iteration.IterationWrapper
hasNext, next, remove
Methods inherited from class org.eclipse.rdf4j.common.iteration.AbstractCloseableIteration
close, isClosed
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.common.iteration.CloseableIteration
close
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface org.eclipse.rdf4j.query.QueryResult
hasNext, iterator, next, stream
-
Constructor Details
-
BackgroundGraphResult
public BackgroundGraphResult(RDFParser parser, InputStream in, Charset charset, String baseURI, WeakReference<?> callerRef) Deprecated. -
BackgroundGraphResult
public BackgroundGraphResult(QueueCursor<Statement> queue, RDFParser parser, InputStream in, Charset charset, String baseURI) Deprecated.
-
-
Method Details
-
handleClose
Deprecated.Description copied from class:IterationWrapper
Closes this Iteration and also closes the wrapped Iteration if it is aCloseableIteration
.- Overrides:
handleClose
in classIterationWrapper<Statement,
QueryEvaluationException> - Throws:
QueryEvaluationException
-
run
public void run()Deprecated. -
startRDF
Deprecated.Description copied from interface:RDFHandler
Signals the start of the RDF data. This method is called before any data is reported.- Specified by:
startRDF
in interfaceRDFHandler
- Throws:
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.
-
getNamespaces
Deprecated.Description copied from interface:GraphQueryResult
Retrieves relevant namespaces from the query result.
The contents of the Map may be modified after it is returned, as the initial return may be performed when the first RDF Statement is encountered.- Specified by:
getNamespaces
in interfaceGraphQueryResult
- Returns:
- a Map<String, String> object containing (prefix, namespace) pairs.
-
handleComment
Deprecated.Description copied from interface:RDFHandler
Handles a comment.- Specified by:
handleComment
in interfaceRDFHandler
- Parameters:
comment
- The comment.- Throws:
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.
-
handleNamespace
Deprecated.Description copied from interface:RDFHandler
Handles a namespace declaration/definition. A namespace declaration associates a (short) prefix string with the namespace's URI. The prefix for default namespaces, which do not have an associated prefix, are represented as empty strings.- Specified by:
handleNamespace
in interfaceRDFHandler
- Parameters:
prefix
- The prefix for the namespace, or an empty string in case of a default namespace.uri
- The URI that the prefix maps to.- Throws:
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.
-
handleStatement
Deprecated.Description copied from interface:RDFHandler
Handles a statement.- Specified by:
handleStatement
in interfaceRDFHandler
- Parameters:
st
- The statement.- Throws:
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.
-
endRDF
Deprecated.Description copied from interface:RDFHandler
Signals the end of the RDF data. This method is called when all data has been reported.- Specified by:
endRDF
in interfaceRDFHandler
- Throws:
RDFHandlerException
- If the RDF handler has encountered an unrecoverable error.
-