Class CleanerGraphQueryResult
java.lang.Object
org.eclipse.rdf4j.common.concurrent.locks.diagnostics.CleanerGraphQueryResult
- All Implemented Interfaces:
AutoCloseable
,Iterable<Statement>
,Iterator<Statement>
,CloseableIteration<Statement>
,GraphQueryResult
,QueryResult<Statement>
-
Constructor Summary
ConstructorDescriptionCleanerGraphQueryResult
(GraphQueryResult delegate, ConcurrentCleaner cleaner) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes this iteration, freeing any resources that it is holding.Retrieves relevant namespaces from the query result.boolean
hasNext()
Returnstrue
if the query result has more elements.next()
Returns the next element in the query result.void
remove()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface java.util.Iterator
forEachRemaining
Methods inherited from interface org.eclipse.rdf4j.query.QueryResult
iterator, stream
-
Constructor Details
-
CleanerGraphQueryResult
-
-
Method Details
-
close
public void close()Description copied from interface:CloseableIteration
Closes this iteration, freeing any resources that it is holding. If the iteration has already been closed then invoking this method has no effect.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseableIteration<Statement>
-
hasNext
public boolean hasNext()Description copied from interface:QueryResult
Returnstrue
if the query result has more elements. (In other words, returnstrue
ifQueryResult.next()
would return an element rather than throwing aNoSuchElementException
.) -
next
Description copied from interface:QueryResult
Returns the next element in the query result. -
remove
public void remove() -
getNamespaces
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.
- Throws:
QueryEvaluationException
-