T
- the type of element returned by the Iteratorpublic class IteratorWithAfterIterationCallback<T>
extends java.lang.Object
implements java.util.Iterator, java.lang.AutoCloseable
Constructor and Description |
---|
IteratorWithAfterIterationCallback(java.util.Iterator<T> delegate,
java.util.function.Consumer<T> callback)
Constructs an IteratorWithAfterIterationCallback object that wraps the given Iterator
and calls the passed callback after an object was returned.
|
IteratorWithAfterIterationCallback(java.util.Iterator<T> delegate,
java.util.function.Consumer<T> callback,
boolean doThrowOnExecutionErrors)
Constructs an IteratorWithAfterIterationCallback object that wraps the given Iterator
and calls the passed callback after an object was returned.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this IteratorWithAfterIterationCallback and frees all resources.
|
boolean |
hasNext()
Returns true if the iteration has more elements.
|
T |
next() |
void |
remove() |
public IteratorWithAfterIterationCallback(java.util.Iterator<T> delegate, java.util.function.Consumer<T> callback)
delegate
- the Iterator to wrap in this IteratorWithExhaustionCallbacks. Must not be null.callback
- the callback to call after an object was returnedjava.lang.IllegalArgumentException
- if the given Iterator or callback are nullpublic IteratorWithAfterIterationCallback(java.util.Iterator<T> delegate, java.util.function.Consumer<T> callback, boolean doThrowOnExecutionErrors)
delegate
- the Iterator to wrap in this IteratorWithExhaustionCallbacks. Must not be null.callback
- the callback to call after an object was returneddoThrowOnExecutionErrors
- a boolean (defaults to false) that controls the behavior of any
Runnable objects provided as callbacks. If true, an IRuntimeException will be raised if
any of the callbacks throws an Exception during execution. If false, only a warning will
be logged for any such Exceptions.java.lang.IllegalArgumentException
- if the given Iterator or callback are nullpublic boolean hasNext()
next()
will successfully return an element.
Additionally, the configured callback will be called on the last returned object.hasNext
in interface java.util.Iterator
IRuntimeException
- if doThrowOnExecutionErrors was configured as true and the configured
callback throws an Exception during executionpublic T next()
next
in interface java.util.Iterator
public void remove()
remove
in interface java.util.Iterator
public void close()
close
in interface java.lang.AutoCloseable
IRuntimeException
- if doThrowOnExecutionErrors was configured as true and the configured
callback throws an Exception during executionCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.