com.ibm.websphere.batch.devframework.datastreams.bdsadapter
Interface AbstractBatchDataOutputStream
-
- All Known Implementing Classes:
- AbstractBatchDataOutputStreamRecordMetrics
public interface AbstractBatchDataOutputStream
-
-
Method Summary
Methods Modifier and Type Method and Description voidflush()Flushes the output streamvoidwrite(java.lang.Object record)Writes the given record to the output streamvoidwriteHeader(java.lang.Object record)Writes header data
-
-
-
Method Detail
-
write
void write(java.lang.Object record) throws java.lang.ExceptionWrites the given record to the output stream- Parameters:
record-- Throws:
java.lang.Exception
-
flush
void flush() throws java.lang.ExceptionFlushes the output stream- Throws:
java.lang.Exception
-
writeHeader
void writeHeader(java.lang.Object record) throws java.lang.ExceptionWrites header data- Parameters:
record-- Throws:
java.lang.Exception
-
-