Checkpointing File Data Supplier
A checkpointing file data supplier works similarly to the FileDataSupplier in use under good conditions. When failing through, the checkpointing supplier will be able to capture those requests that did or didn't pass a predicate, and subsequently restart from a known state.
A caveat to this, is that depending on the side-effects of the server being called. It is possible that the request (or at least the data mutation effects) have completed from the server.
This means, that this should only be used in the event that the server requests are idempotent. Or retry is safe.
There is a startup cost to using this data supplier as well, as it has to take an exclusive copy of the request data.
Checkpoint data suppliers only create List
A checkpointing supplier is also not expected to work