public class LengthLimitingStream extends BlobOutputStream
Constructor and Description |
---|
LengthLimitingStream(OutputStream wrappedStream,
long start,
Long length) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this output stream and releases any system resources associated with this stream.
|
void |
flush()
Flushes this output stream and forces any buffered output bytes to be written out.
|
void |
write(byte[] data,
int offset,
int length)
Writes length bytes from the specified byte array starting at offset to this output stream.
|
void |
write(InputStream sourceStream,
long writeLength)
Writes all data from the InputStream to the Blob.
|
write, write
public LengthLimitingStream(OutputStream wrappedStream, long start, Long length)
public void write(byte[] data, int offset, int length) throws IOException
BlobOutputStream
write
in class BlobOutputStream
data
- A byte
array which represents the data to write.offset
- An int
which represents the start offset in the data.length
- An int
which represents the number of bytes to write.IOException
- If an I/O error occurs. In particular, an IOException may be thrown if the output stream has been
closed.public void write(InputStream sourceStream, long writeLength) throws IOException, StorageException
BlobOutputStream
write
in class BlobOutputStream
sourceStream
- An InputStream
object which species the data to write to the Blob.IOException
- If an I/O error occurs. In particular, an IOException may be thrown if the output stream has been
closed.StorageException
- An exception representing any error which occurred during the operation.public void flush() throws IOException
BlobOutputStream
flush
in interface Flushable
flush
in class BlobOutputStream
IOException
- If an I/O error occurs.public void close() throws IOException
BlobOutputStream
close
in interface Closeable
close
in interface AutoCloseable
close
in class BlobOutputStream
IOException
- If an I/O error occurs.Copyright © 2019. All rights reserved.