RESOLVED - issue BATCH-420: ChunkListener

http://jira.springframework.org/browse/BATCH-420
This commit is contained in:
dsyer
2008-03-06 08:32:25 +00:00
parent f2ae3f05b9
commit 805b7735d2

View File

@@ -25,7 +25,13 @@ package org.springframework.batch.core.domain;
*/
public interface ChunkListener extends BatchListener {
/**
* Callback before the chunk is executed, but inside the transaction.
*/
void beforeChunk();
/**
* Callback after the chunk is executed, but inside the transaction.
*/
void afterChunk();
}