OPEN - BATCH-803: Add non-buffering ChunkOrientedTasklet (or option in existing one) plus flag for factory bean

javadoc
This commit is contained in:
robokaso
2008-09-26 09:55:27 +00:00
parent 872c0aa080
commit da24ea2041

View File

@@ -30,12 +30,13 @@ import org.springframework.core.AttributeAccessor;
/**
* Fault-tolerant chunk-oriented tasklet implementation which does not buffer
* items that have been read - the assumption is that item reader is
* transactional and will re-present the items after transaction rollback.
* transactional and will re-present the items after transaction rollback, while
* item ordering might not be preserved (JMS).
*
* Note that the implementation relies on {@link Object#equals(Object)}
* comparisons for recognizing items on retry/skip.
*
* TODO garbage collection of skipped items
* TODO how to cleanup skipped items buffers?
*
* @author Robert Kasanicky
*