Example usage for org.springframework.batch.item ItemStreamWriter interface-usage

List of usage examples for org.springframework.batch.item ItemStreamWriter interface-usage

Introduction

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

Usage

From source file fr.acxio.tools.agia.file.FlatFileNodeWriter.java

public class FlatFileNodeWriter implements ItemStreamWriter<NodeList> {

    private ResourceAwareItemWriterItemStream<Node> delegate;

    public void setDelegate(ResourceAwareItemWriterItemStream<Node> sDelegate) {
        delegate = sDelegate;

From source file fr.acxio.tools.agia.transform.MapAdaptorWriter.java

public class MapAdaptorWriter<T> implements ItemStreamWriter<Map<String, Object>> {

    private ItemWriter<? super T> delegate;
    private String key;

    public void setDelegate(ItemWriter<? super T> sDelegate) {

From source file fr.acxio.tools.agia.item.ConditionalItemWriter.java

/**
 * <p>Expression based filtering wrapper for any ItemWriter.</p>
 * <p>The condition is evaluated for each item to write. If the result of the
 * evaluation is true, the item is passed to the delegate writer.</p>
 * 
 * @author pcollardez

From source file org.springframework.batch.integration.async.AsyncItemWriter.java

public class AsyncItemWriter<T> implements ItemStreamWriter<Future<T>>, InitializingBean {

    private static final Log logger = LogFactory.getLog(AsyncItemWriter.class);

    private ItemWriter<T> delegate;

From source file fr.acxio.tools.agia.file.FileDirectoriesNodeWriter.java

public class FileDirectoriesNodeWriter implements ItemStreamWriter<NodeList> {

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

    private static final FormatConverter pathConverter = new AlfrescoPathToPathConverter();

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

/**
 *
 * @author ochoaa
 */
public class CnaDataWriter implements ItemStreamWriter<String> {

From source file org.cbioportal.annotation.pipeline.MutationRecordWriter.java

/**
 *
 * @author Zachary Heins
 */
public class MutationRecordWriter implements ItemStreamWriter<String> {

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

/**
 *
 * @author Prithi Chakrapani, ochoaa
 */
public class ClinicalDataWriter implements ItemStreamWriter<CompositeResultBean> {

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

/**
 *
 * @author Prithi Chakrapani, ochoaa
 */
public class FusionDataWriter implements ItemStreamWriter<CompositeResultBean> {

From source file org.cbioportal.database.annotator.AnnotateRecordsWriter.java

import org.springframework.beans.factory.annotation.Autowired;

/**
 *
 * @author heinsz
 */