|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ItemStream | |
---|---|
org.springframework.batch.core.step.item | Specific implementations of step concerns for item-oriented approach. |
org.springframework.batch.core.step.tasklet | Interfaces and generic implementations of tasklet concerns. |
org.springframework.batch.item | Infrastructure interfaces and primary dependencies for item concerns. |
org.springframework.batch.item.database | Infrastructure implementations of database based item readers and writers. |
org.springframework.batch.item.file | Infrastructure implementations of io file concerns. |
org.springframework.batch.item.support | Internal support package |
org.springframework.batch.item.xml | Infrastructure implementations of xml input and output. |
org.springframework.batch.sample.domain.trade.internal |
Uses of ItemStream in org.springframework.batch.core.step.item |
---|
Methods in org.springframework.batch.core.step.item with parameters of type ItemStream | |
---|---|
protected void |
FaultTolerantStepFactoryBean.registerStreams(TaskletStep step,
ItemStream[] streams)
Register the streams with the step. |
protected void |
SimpleStepFactoryBean.registerStreams(TaskletStep step,
ItemStream[] streams)
Register the streams with the step. |
void |
SimpleStepFactoryBean.setStreams(ItemStream[] streams)
The streams to inject into the Step . |
Uses of ItemStream in org.springframework.batch.core.step.tasklet |
---|
Methods in org.springframework.batch.core.step.tasklet with parameters of type ItemStream | |
---|---|
void |
TaskletStep.registerStream(ItemStream stream)
Register a single ItemStream for callbacks to the stream
interface. |
void |
TaskletStep.setStreams(ItemStream[] streams)
Register each of the streams for callbacks at the appropriate time in the step. |
Uses of ItemStream in org.springframework.batch.item |
---|
Subinterfaces of ItemStream in org.springframework.batch.item | |
---|---|
interface |
ItemStreamReader<T>
Convenience interface that combines ItemStream and ItemReader
. |
Classes in org.springframework.batch.item that implement ItemStream | |
---|---|
class |
ItemStreamSupport
Empty method implementation of ItemStream . |
Uses of ItemStream in org.springframework.batch.item.database |
---|
Classes in org.springframework.batch.item.database that implement ItemStream | |
---|---|
class |
AbstractPagingItemReader<T>
Abstract ItemReader for to extend when reading database records in a paging
fashion. |
class |
HibernateCursorItemReader<T>
ItemReader for reading database records built on top of Hibernate. |
class |
IbatisPagingItemReader<T>
ItemReader for reading database
records using iBATIS in a paging fashion. |
class |
JdbcCursorItemReader<T>
Simple item reader that opens a JDBC cursor and continually retrieves the next row in the ResultSet. |
class |
JdbcPagingItemReader<T>
ItemReader for reading database records using JDBC in a paging
fashion. |
class |
JpaPagingItemReader<T>
ItemReader for reading database records built on top of JPA. |
Uses of ItemStream in org.springframework.batch.item.file |
---|
Subinterfaces of ItemStream in org.springframework.batch.item.file | |
---|---|
interface |
ResourceAwareItemReaderItemStream<T>
Interface for ItemReader s that implement ItemStream and read
input from Resource . |
interface |
ResourceAwareItemWriterItemStream<T>
Interface for ItemWriter s that implement ItemStream and write
output to Resource . |
Classes in org.springframework.batch.item.file that implement ItemStream | |
---|---|
class |
FlatFileItemReader<T>
Restartable ItemReader that reads lines from input
FlatFileItemReader.setResource(Resource) . |
class |
FlatFileItemWriter<T>
This class is an item writer that writes data to a file or stream. |
class |
MultiResourceItemReader<T>
Reads items from multiple resources sequentially - resource list is given by MultiResourceItemReader.setResources(Resource[]) , the actual reading is delegated to
MultiResourceItemReader.setDelegate(ResourceAwareItemReaderItemStream) . |
class |
MultiResourceItemWriter<T>
Wraps a ResourceAwareItemWriterItemStream and creates a new output
resource when the count of items written in current resource exceeds
MultiResourceItemWriter.setItemCountLimitPerResource(int) . |
Uses of ItemStream in org.springframework.batch.item.support |
---|
Classes in org.springframework.batch.item.support that implement ItemStream | |
---|---|
class |
AbstractItemCountingItemStreamItemReader<T>
Abstract superclass for ItemReader s that supports restart by storing
item count in the ExecutionContext (therefore requires item ordering
to be preserved between runs). |
class |
AbstractItemStreamItemReader<T>
Base class for ItemReader implementations. |
class |
AbstractItemStreamItemWriter<T>
Base class for ItemWriter implementations. |
class |
CompositeItemStream
Simple ItemStream that delegates to a list of other streams. |
Methods in org.springframework.batch.item.support with parameters of type ItemStream | |
---|---|
void |
CompositeItemStream.register(ItemStream stream)
Register a ItemStream as one of the interesting providers under
the provided key. |
void |
CompositeItemStream.setStreams(ItemStream[] listeners)
Public setter for the listeners. |
Uses of ItemStream in org.springframework.batch.item.xml |
---|
Classes in org.springframework.batch.item.xml that implement ItemStream | |
---|---|
class |
StaxEventItemReader<T>
Item reader for reading XML input based on StAX. |
class |
StaxEventItemWriter<T>
An implementation of ItemWriter which uses StAX and
Marshaller for serializing object to XML. |
Uses of ItemStream in org.springframework.batch.sample.domain.trade.internal |
---|
Classes in org.springframework.batch.sample.domain.trade.internal that implement ItemStream | |
---|---|
class |
TradeWriter
Delegates the actual writing to custom DAO delegate. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |