public final class BlobOutputStream extends OutputStream
| 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)
Writes  
b.length bytes from the specified byte array to this output stream. | 
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. 
 | 
void | 
write(int byteVal)
Writes the specified byte to this output stream. 
 | 
@DoesServiceRequest public void close() throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOException - If an I/O error occurs.@DoesServiceRequest public void flush() throws IOException
flush in interface Flushableflush in class OutputStreamIOException - If an I/O error occurs.@DoesServiceRequest public void write(byte[] data) throws IOException
b.length bytes from the specified byte array to this output stream.
 
 If you are using CloudAppendBlob and are certain of a single writer scenario, please look at 
 BlobRequestOptions.setAbsorbConditionalErrorsOnRetry(Boolean) and see if setting this flag to 
 true is acceptable for you.
write in class OutputStreamdata - A byte array which represents the data to write.IOException - If an I/O error occurs. In particular, an IOException may be thrown if the output stream has been
             closed.@DoesServiceRequest public void write(byte[] data, int offset, int length) throws IOException
 If you are using CloudAppendBlob and are certain of a single writer scenario, please look at 
 BlobRequestOptions.setAbsorbConditionalErrorsOnRetry(Boolean) and see if setting this flag to 
 true is acceptable for you.
write in class OutputStreamdata - 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.@DoesServiceRequest public void write(InputStream sourceStream, long writeLength) throws IOException, StorageException
 If you are using CloudAppendBlob and are certain of a single writer scenario, please look at 
 BlobRequestOptions.setAbsorbConditionalErrorsOnRetry(Boolean) and see if setting this flag to 
 true is acceptable for you.
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.@DoesServiceRequest public void write(int byteVal) throws IOException
 If you are using CloudAppendBlob and are certain of a single writer scenario, please look at 
 BlobRequestOptions.setAbsorbConditionalErrorsOnRetry(Boolean) and see if setting this flag to 
 true is acceptable for you.
write in class OutputStreambyteVal - An int which represents the bye value to write.IOException - If an I/O error occurs. In particular, an IOException may be thrown if the output stream has been
             closed./** 
* Copyright Microsoft Corporation 
* 
* Licensed under the Apache License, Version 2.0 (the "License"); 
* you may not use this file except in compliance with the License. 
* You may obtain a copy of the License at 
* http://www.apache.org/licenses/LICENSE-2.0 
* 
* Unless required by applicable law or agreed to in writing, software 
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
* See the License for the specific language governing permissions and 
* limitations under the License. 
*/