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

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

Introduction

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

Usage

From source file uk.ac.ebi.eva.pipeline.listeners.SkippedItemListener.java

/**
 * @author Diego Poggioli
 *
 * Just logs skipped items into a differnt file (different logger)
 */
public class SkippedItemListener implements SkipListener {

From source file no.magott.training.ex1.SpursSkipListener.java

/**
 * @author Morten Andersen-Gott
 *
 */
public class SpursSkipListener implements SkipListener<SpursMatch, SpursMatch> {

From source file de.codecentric.batch.metrics.item.MetricsTestSkipListener.java

/**
 * @author Tobias Flohre
 */
public class MetricsTestSkipListener implements SkipListener<Item, Item> {

    private BatchMetrics businessMetrics;

From source file org.springframework.xd.dirt.plugins.job.support.listener.SimpleXdSkipListener.java

/**
 * @author Gunnar Hillert
 * @author Ilayaperumal Gopinathan
 * @since 1.0
 */
public class SimpleXdSkipListener extends BatchJobListener<Object> implements SkipListener<Object, Object> {

From source file org.springframework.cloud.task.batch.listener.EventEmittingSkipListener.java

/**
 * Setups up the SkipProcessListener to emit events to the spring cloud stream output channel.
 *
 * This listener emits the exception's message via the
 * {@link BatchJobHeaders.BATCH_EXCEPTION} message header for each method.  For
 * {@link SkipListener#onSkipInProcess(Object, Throwable)} and

From source file de.langmi.spring.batch.examples.complex.skip.simple.SkipJobListener.java

/**
 * SkipJobListener.
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 */
public class SkipJobListener implements JobExecutionListener, SkipListener<String, String>, StepExecutionListener,

From source file org.jasig.ssp.util.importer.job.listener.ValidationSkipListener.java

public class ValidationSkipListener implements SkipListener<RawItem, RawItem> {

    private StepExecution stepExecution;

    Logger logger = LoggerFactory.getLogger(ValidationSkipListener.class);

From source file org.jasig.ssp.util.importer.job.listener.StagingAndUpsertSkipListener.java

public class StagingAndUpsertSkipListener implements SkipListener<RawItem, RawItem>, ItemWriteListener<RawItem> {

    private StepExecution stepExecution;

    private MetadataConfigurations metadataRepository;