RESOLVED - issue BATCH-1185: Job slows when step scope is used

http://jira.springframework.org/browse/BATCH-1185
This commit is contained in:
dsyer
2009-04-06 14:38:23 +00:00
parent 3bfc17433e
commit c4e02c9a4e
7 changed files with 894 additions and 67 deletions

View File

@@ -18,6 +18,7 @@ package org.springframework.batch.item.file;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemStream;
import org.springframework.batch.item.ItemStreamReader;
import org.springframework.core.io.Resource;
/**
@@ -26,7 +27,7 @@ import org.springframework.core.io.Resource;
*
* @author Robert Kasanicky
*/
public interface ResourceAwareItemReaderItemStream<T> extends ItemReader<T>, ItemStream {
public interface ResourceAwareItemReaderItemStream<T> extends ItemStreamReader<T> {
void setResource(Resource resource);
}