@Public public abstract class PositionOutputStream extends OutputStream
PositionOutputStream provides position methods.| Constructor and Description |
|---|
PositionOutputStream() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
close()
Closes the output stream.
|
abstract void |
flush()
Flushes the stream, writing any data currently buffered in stream implementation to the
proper output stream.
|
abstract 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.
|
abstract void |
write(byte[] b)
Writes
b.length bytes from the specified byte array to this output stream. |
abstract void |
write(byte[] b,
int off,
int len)
Writes
len bytes from the specified byte array starting at offset off
to this output stream. |
writepublic abstract long getPos()
throws IOException
This method must report accurately report the current position of the stream. Various components of the high-availability and recovery logic rely on the accurate
IOException - Thrown if an I/O error occurs while obtaining the position from the
stream implementation.public abstract void write(byte[] b)
throws IOException
b.length bytes from the specified byte array to this output stream. The
general contract for write(b) is that it should have exactly the same effect as
the call write(b, 0, b.length).write in class OutputStreamIOExceptionpublic abstract void write(byte[] b,
int off,
int len)
throws IOException
len bytes from the specified byte array starting at offset off
to this output stream. The general contract for write(b, off, len) is
that some of the bytes in the array b are written to the output stream in order;
element b[off] is the first byte written and b[off+len-1] is the
last byte written by this operation.write in class OutputStreamIOExceptionpublic abstract void flush()
throws IOException
Implementation note: This overrides the method defined in OutputStream as abstract
to force implementations of the PositionOutputStream to implement this method
directly.
flush in interface Flushableflush in class OutputStreamIOException - Thrown if an I/O error occurs while flushing the stream.public abstract void close()
throws IOException
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 PositionOutputStream to implement this method
directly.
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOException - Thrown, if an error occurred while closing the stream or guaranteeing
that the data is persistent.Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.