-
Interfaces Interface Description org.eclipse.rdf4j.common.iteration.CloseableIteration In the future this interface will stop extendingIterationand instead declare the same interface methods directly. The interface will also stop requiring implementations to automatically close when exhausted, instead making this an optional feature and requiring the user to always call close. This interface may also be removed.org.eclipse.rdf4j.common.iteration.Iteration For performance and simplification the Iteration interface is deprecated and will be removed in 5.0.0. Use CloseableIteration instead, even if your iteration doesn't require AutoCloseable.
-
Fields Field Description org.eclipse.rdf4j.common.iteration.IterationWrapper.wrappedIter This will be changed to private, possibly with an accessor in future. Do not rely on it.
-
Constructors Constructor Description org.eclipse.rdf4j.common.iteration.QueueIteration(int, WeakReference<?>) WeakReference is no longer supported as a way to automatically close this iteration. The recommended approach to automatically closing an iteration on garbage collection is to use aCleaner.org.eclipse.rdf4j.common.iterator.CloseableIterationIterator(Iteration<? extends E, ? extends RuntimeException>)