- java.lang.Object
-
- jakarta.batch.api.chunk.AbstractItemWriter
-
- All Implemented Interfaces:
ItemWriter
public abstract class AbstractItemWriter extends java.lang.Object implements ItemWriter
The AbstractItemWriter provides default implementations of not commonly implemented methods.
-
-
Constructor Summary
Constructors Constructor Description AbstractItemWriter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.io.SerializablecheckpointInfo()Override this method if the ItemWriter supports checkpoints.voidclose()Override this method if the ItemWriter requires any close time processing.voidopen(java.io.Serializable checkpoint)Override this method if the ItemWriter requires any open time processing.abstract voidwriteItems(java.util.List<java.lang.Object> items)Implement write logic for the ItemWriter in this method.
-
-
-
Method Detail
-
open
public void open(java.io.Serializable checkpoint) throws java.lang.ExceptionOverride this method if the ItemWriter requires any open time processing. The default implementation does nothing.- Specified by:
openin interfaceItemWriter- Parameters:
checkpoint- last checkpoint for this ItemReader- Throws:
java.lang.Exception- (or subclass) if an error occurs.
-
close
public void close() throws java.lang.ExceptionOverride this method if the ItemWriter requires any close time processing. The default implementation does nothing.- Specified by:
closein interfaceItemWriter- Throws:
java.lang.Exception- (or subclass) if an error occurs.
-
writeItems
public abstract void writeItems(java.util.List<java.lang.Object> items) throws java.lang.ExceptionImplement write logic for the ItemWriter in this method.- Specified by:
writeItemsin interfaceItemWriter- Parameters:
items- specifies the list of items to write.- Throws:
java.lang.Exception- (or subclass) if an error occurs.
-
checkpointInfo
public java.io.Serializable checkpointInfo() throws java.lang.ExceptionOverride this method if the ItemWriter supports checkpoints. The default implementation returns null.- Specified by:
checkpointInfoin interfaceItemWriter- Returns:
- checkpoint data
- Throws:
java.lang.Exception- (or subclass) if an error occurs.
-
-