Example usage for org.springframework.batch.core StepExecutionListener interface-usage

List of usage examples for org.springframework.batch.core StepExecutionListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core StepExecutionListener interface-usage.

Usage

From source file org.cbio.portal.pipelines.foundation.FoundationXmlGeneratorListener.java

/**
 *
 * @author ochoaa
 */
public class FoundationXmlGeneratorListener implements StepExecutionListener {

From source file prototypes.batches.chunking.listener.CustomStepListener.java

public class CustomStepListener implements StepExecutionListener {

    private static final Logger LOGGER = LoggerFactory.getLogger(CustomStepListener.class);

    @Override
    public void beforeStep(StepExecution stepExecution) {

From source file prototypes.batches.listening.listener.CustomStepListener.java

public class CustomStepListener implements StepExecutionListener {

    private static final Logger LOGGER = LoggerFactory.getLogger(CustomStepListener.class);

    @Override
    public void beforeStep(StepExecution stepExecution) {

From source file com.github.ffremont.MyStepExecutionListener.java

/**
 *
 * @author florent
 */
@Component("myStepExecutionListener")
public class MyStepExecutionListener implements StepExecutionListener {

From source file org.duracloud.snapshot.service.impl.ContentPropertiesWriter.java

/**
 * @author Daniel Bernstein 
 *         Date: Aug 22, 2014
 */
public class ContentPropertiesWriter
        implements ItemWriter<ContentProperties>, StepExecutionListener, ItemWriteListener<ContentProperties> {

From source file de.langmi.spring.batch.examples.listeners.InterfaceStepListener.java

/**
 * Simple interface based listener.
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 */
public class InterfaceStepListener implements StepExecutionListener {

From source file de.langmi.spring.batch.examples.listeners.InterfaceStepScopeListener.java

/**
 * Simple interface based listener, should be used with scope="step".
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 */
public class InterfaceStepScopeListener implements StepExecutionListener {

From source file org.examproject.batch.listener.ContentStepListener.java

/**
 * @author hiroxpepe
 */
public class ContentStepListener implements StepExecutionListener {

    private static final Log LOG = LogFactory.getLog(ContentStepListener.class);

From source file de.langmi.spring.batch.examples.complex.aggregating.writer.ReaderExhaustedWrapper.java

/**
 * A Reader Implementation for 
 * http://stackoverflow.com/questions/8837487/how-to-process-logically-related-rows-after-itemreader-in-springbatch.
 * 
 * Wraps another reader and peeks ahead for each read to know beforehand if the 
 * delegate reader is exhausted. Propagates the information to the StepExecutionContext.

From source file de.langmi.spring.batch.examples.complex.aggregating.AggregatedItemWriter.java

/**
 * ItemWriter for AggregatedItems.
 * 
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 */
public class AggregatedItemWriter implements ItemWriter<AggregatedItem>, StepExecutionListener {