T
- The type of element to write.public class NoCompressionBulkWriter<T> extends Object implements BulkWriter<T>
BulkWriter
implementation that does not compress data. This is essentially a no-op
writer for use with CompressWriterFactory
for the case
that no compression codec is specified.BulkWriter.Factory<T>
Constructor and Description |
---|
NoCompressionBulkWriter(FSDataOutputStream outputStream,
Extractor<T> extractor) |
Modifier and Type | Method and Description |
---|---|
void |
addElement(T element)
Adds an element to the encoder.
|
void |
finish()
Finishes the writing.
|
void |
flush()
Flushes all intermediate buffered data to the output stream.
|
public NoCompressionBulkWriter(FSDataOutputStream outputStream, Extractor<T> extractor)
public void addElement(T element) throws IOException
BulkWriter
It may be that adding this element fills up an internal buffer and causes the encoding and flushing of a batch of internally buffered elements.
addElement
in interface BulkWriter<T>
element
- The element to add.IOException
- Thrown, if the element cannot be added to the encoder, or if the output
stream throws an exception.public void flush() throws IOException
BulkWriter
flush
in interface BulkWriter<T>
IOException
- Thrown if the encoder cannot be flushed, or if the output stream throws
an exception.public void finish() throws IOException
BulkWriter
The writer is not expected to handle any more records via BulkWriter.addElement(Object)
after this method is called.
Important: This method MUST NOT close the stream that the writer writes to. Closing the stream is expected to happen through the invoker of this method afterwards.
finish
in interface BulkWriter<T>
IOException
- Thrown if the finalization fails.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.