Package psidev.psi.mi.jami.batch
Class BasicChunkLoggerListener
- java.lang.Object
-
- psidev.psi.mi.jami.batch.BasicChunkLoggerListener
-
- All Implemented Interfaces:
org.springframework.batch.core.ChunkListener,org.springframework.batch.core.StepExecutionListener,org.springframework.batch.core.StepListener
public class BasicChunkLoggerListener extends Object implements org.springframework.batch.core.StepExecutionListener, org.springframework.batch.core.ChunkListener
Listener to chumk operations- Since:
02/08/13
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Constructor Summary
Constructors Constructor Description BasicChunkLoggerListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterChunk(org.springframework.batch.core.scope.context.ChunkContext chunkContext)voidafterChunkError(org.springframework.batch.core.scope.context.ChunkContext chunkContext)org.springframework.batch.core.ExitStatusafterStep(org.springframework.batch.core.StepExecution stepExecution)voidbeforeChunk(org.springframework.batch.core.scope.context.ChunkContext chunkContext)voidbeforeStep(org.springframework.batch.core.StepExecution stepExecution)
-
-
-
Method Detail
-
afterStep
public org.springframework.batch.core.ExitStatus afterStep(org.springframework.batch.core.StepExecution stepExecution)
- Specified by:
afterStepin interfaceorg.springframework.batch.core.StepExecutionListener
-
beforeStep
public void beforeStep(org.springframework.batch.core.StepExecution stepExecution)
- Specified by:
beforeStepin interfaceorg.springframework.batch.core.StepExecutionListener
-
beforeChunk
public void beforeChunk(org.springframework.batch.core.scope.context.ChunkContext chunkContext)
- Specified by:
beforeChunkin interfaceorg.springframework.batch.core.ChunkListener
-
afterChunk
public void afterChunk(org.springframework.batch.core.scope.context.ChunkContext chunkContext)
- Specified by:
afterChunkin interfaceorg.springframework.batch.core.ChunkListener
-
afterChunkError
public void afterChunkError(org.springframework.batch.core.scope.context.ChunkContext chunkContext)
- Specified by:
afterChunkErrorin interfaceorg.springframework.batch.core.ChunkListener
-
-