Class UpdatableIterator<E>
java.lang.Object
org.apache.activemq.artemis.utils.collections.UpdatableIterator<E>
- All Implemented Interfaces:
Iterator<E>,RepeatableIterator<E>,ResettableIterator<E>
public class UpdatableIterator<E>
extends Object
implements ResettableIterator<E>, RepeatableIterator<E>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidforEachRemaining(Consumer<? super E> action) booleanhasNext()next()voidremove()voidvoidrepeat()If the current value should repeat.voidreset()When reset is called, then if a new iterator has been provided by another thread via update method, then we switch over to using the new iterator.voidupdate(ResettableIterator<E> iterator) This can be called by another thread.
-
Constructor Details
-
UpdatableIterator
-
-
Method Details
-
update
This can be called by another thread. It sets a new iterator, that will be picked up on the next reset.- Parameters:
iterator- the new iterator to update to.
-
reset
public void reset()When reset is called, then if a new iterator has been provided by another thread via update method, then we switch over to using the new iterator.It is important that on nulling off the changedIterator, we atomically compare and set as the changedIterator could be further updated by another thread whilst we are resetting, the subsequent update simply would be picked up on the next reset.
- Specified by:
resetin interfaceResettableIterator<E>
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove() -
forEachRemaining
- Specified by:
forEachRemainingin interfaceIterator<E>
-
repeat
public void repeat()Description copied from interface:RepeatableIteratorIf the current value should repeat.- Specified by:
repeatin interfaceRepeatableIterator<E>
-
removed
- Specified by:
removedin interfaceRepeatableIterator<E>
-