List of usage examples for org.springframework.batch.item ItemStreamSupport subclass-usage
From source file org.springframework.batch.jsr.item.CheckpointSupport.java
/**
* Provides support for JSR-352 checkpointing. Checkpoint objects are copied prior
* to being added to the {@link ExecutionContext} for persistence by the framework.
* If the checkpoint object cannot be copied and further changes occur to the same
* instance, side effects may occur. In cases like this, it is recommended that a
* copy of the object being acted upon in the reader/writer is returned via the
From source file org.springframework.batch.core.step.item.ChunkMonitor.java
/**
* Manage the offset data between the last successful commit and updates made to
* an input chunk. Only works with single threaded steps because it has to use a
* {@link ThreadLocal} to manage the state and coordinate between the caller
* and the wrapped {@link ItemStream}.
*
From source file org.springframework.batch.sample.domain.trade.internal.TradeWriter.java
/** * Delegates the actual writing to custom DAO delegate. Allows configurable * exception raising for testing skip and restart. */ public class TradeWriter extends ItemStreamSupport implements ItemWriter<Trade> {
From source file lcn.module.batch.web.guide.service.TradeWriter.java
/**
* TradeWriter
*
* @author
* @since 2012. 07.25
* @version 1.0
From source file org.openmrs.module.bahmniexports.example.domain.trade.internal.TradeWriter.java
/** * Delegates the actual writing to custom DAO delegate. Allows configurable * exception raising for testing skip and restart. */ public class TradeWriter extends ItemStreamSupport implements ItemWriter<Trade> {