Interface RecoveryManager.RecoveryIterator
-
- All Known Implementing Classes:
PreparedTxIterator
- Enclosing interface:
- RecoveryManager
public static interface RecoveryManager.RecoveryIterator extends Iterator<Xid[]>
Stateful structure allowing prepared-tx retrieval in a batch-oriented manner, as required byXAResource.recover(int)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Xid[]
all()
Exhaust the iterator.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Field Detail
-
NOTHING
static final Xid[] NOTHING
-
-
Method Detail
-
all
Xid[] all()
Exhaust the iterator. After this call,Iterator.hasNext()
returns false.
-
-