Package org.eclipse.rdf4j.sail.helpers
Class CleanerIteration<E,X extends java.lang.Exception>
- java.lang.Object
-
- org.eclipse.rdf4j.sail.helpers.CleanerIteration<E,X>
-
- All Implemented Interfaces:
java.lang.AutoCloseable,CloseableIteration<E,X>,Iteration<E,X>
final class CleanerIteration<E,X extends java.lang.Exception> extends java.lang.Object implements CloseableIteration<E,X>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classCleanerIteration.CleanableState<E,X extends java.lang.Exception>
-
Field Summary
Fields Modifier and Type Field Description private java.lang.ref.Cleaner.Cleanablecleanableprivate CloseableIteration<E,X>delegateprivate static org.slf4j.Loggerloggerprivate CleanerIteration.CleanableState<E,X>state
-
Constructor Summary
Constructors Constructor Description CleanerIteration(CloseableIteration<E,X> delegate, ConcurrentCleaner cleaner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Closes this iteration, freeing any resources that it is holding.booleanhasNext()Returns true if the iteration has more elements.Enext()Returns the next element in the iteration.voidremove()Removes from the underlying collection the last element returned by the iteration (optional operation).-
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
stream
-
-
-
-
Field Detail
-
logger
private static final org.slf4j.Logger logger
-
delegate
private final CloseableIteration<E,X extends java.lang.Exception> delegate
-
cleanable
private final java.lang.ref.Cleaner.Cleanable cleanable
-
state
private final CleanerIteration.CleanableState<E,X extends java.lang.Exception> state
-
-
Constructor Detail
-
CleanerIteration
public CleanerIteration(CloseableIteration<E,X> delegate, ConcurrentCleaner cleaner)
-
-
Method Detail
-
close
public void close() throws X extends java.lang.ExceptionDescription copied from interface:CloseableIterationCloses 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:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfaceCloseableIteration<E,X extends java.lang.Exception>- Throws:
X extends java.lang.Exception
-
hasNext
public boolean hasNext() throws X extends java.lang.ExceptionDescription copied from interface:IterationReturns true if the iteration has more elements. (In other words, returns true ifIteration.next()would return an element rather than throwing a NoSuchElementException.)
-
next
public E next() throws X extends java.lang.Exception
Description copied from interface:IterationReturns the next element in the iteration.
-
-