From 469203f1b60dd65cdb6639e9c951f5ffb9cbb1bc Mon Sep 17 00:00:00 2001 From: lucasward Date: Fri, 15 Feb 2008 23:30:30 +0000 Subject: [PATCH] BATCH-220: Moved transactional boundary within ChunkedStep to include both 'Chunking' and 'Dechunking' --- .../org/springframework/batch/core/domain/Chunker.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/domain/Chunker.java b/spring-batch-core/src/main/java/org/springframework/batch/core/domain/Chunker.java index c43143c43..f95199254 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/domain/Chunker.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/domain/Chunker.java @@ -38,13 +38,4 @@ public interface Chunker { */ public ChunkingResult chunk(int chunkSize, StepExecution stepExecution) throws ReadFailureException; - /** - * Flush any chunks that may be buffered. Because it may be advantageous to buffer chunks in case of - * failures, calling this method should flush any that are stored, however, it is not a requirement - * of the interface that it be implementated. - * - * @param stepExecution - */ - public void flush(Entity stepExecution); - }