Package org.datavec.api.records.writer
Interface SequenceRecordWriter
-
- All Superinterfaces:
AutoCloseable,Closeable,Configurable
public interface SequenceRecordWriter extends Closeable, Configurable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Close the sequence record writerPartitionMetaDatawrite(List<List<Writable>> sequence)Write a record-
Methods inherited from interface org.datavec.api.conf.Configurable
getConf, setConf
-
-
-
-
Field Detail
-
APPEND
static final String APPEND
- See Also:
- Constant Field Values
-
-
Method Detail
-
write
PartitionMetaData write(List<List<Writable>> sequence) throws IOException
Write a record- Parameters:
sequence- the record to write- Throws:
IOException
-
close
void close()
Close the sequence record writer- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
-