@Internal public class FSDataOutputStreamWrapper extends FSDataOutputStream implements WrappingProxy<FSDataOutputStream>
FSDataInputStream.| Modifier and Type | Field and Description |
|---|---|
protected FSDataOutputStream |
outputStream |
| Constructor and Description |
|---|
FSDataOutputStreamWrapper(FSDataOutputStream outputStream) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the output stream.
|
void |
flush()
Flushes the stream, writing any data currently buffered in stream implementation
to the proper output stream.
|
long |
getPos()
Gets the position of the stream (non-negative), defined as the number of bytes
from the beginning of the file to the current writing position.
|
FSDataOutputStream |
getWrappedDelegate() |
void |
sync()
Flushes the data all the way to the persistent non-volatile storage (for example disks).
|
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
protected final FSDataOutputStream outputStream
public FSDataOutputStreamWrapper(FSDataOutputStream outputStream)
public long getPos()
throws IOException
FSDataOutputStreamThis method must report accurately report the current position of the stream. Various components of the high-availability and recovery logic rely on the accurate
getPos in class FSDataOutputStreamIOException - Thrown if an I/O error occurs while obtaining the position from
the stream implementation.public void flush()
throws IOException
FSDataOutputStreamA completed flush does not mean that the data is necessarily persistent. Data
persistence can is only assumed after calls to FSDataOutputStream.close() or FSDataOutputStream.sync().
Implementation note: This overrides the method defined in OutputStream
as abstract to force implementations of the FSDataOutputStream to implement
this method directly.
flush in interface Flushableflush in class FSDataOutputStreamIOException - Thrown if an I/O error occurs while flushing the stream.public void sync()
throws IOException
FSDataOutputStreamsync in class FSDataOutputStreamIOException - Thrown if an I/O error occurspublic void write(int b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in class OutputStreamIOExceptionpublic void close()
throws IOException
FSDataOutputStreamclass-level docs.
The above implies that the method must block until persistence can be guaranteed.
For example for distributed replicated file systems, the method must block until the
replication quorum has been reached. If the calling thread is interrupted in the
process, it must fail with an IOException to indicate that persistence cannot
be guaranteed.
If this method throws an exception, the data in the stream cannot be assumed to be persistent.
Implementation note: This overrides the method defined in OutputStream
as abstract to force implementations of the FSDataOutputStream to implement
this method directly.
close in interface Closeableclose in interface AutoCloseableclose in class FSDataOutputStreamIOException - Thrown, if an error occurred while closing the stream or guaranteeing
that the data is persistent.public FSDataOutputStream getWrappedDelegate()
getWrappedDelegate in interface WrappingProxy<FSDataOutputStream>Copyright © 2014–2018 The Apache Software Foundation. All rights reserved.