@Deprecated public class ByteArrayStreamingContent extends Object implements StreamingContent
Implementation is not thread-safe.
Constructor and Description |
---|
ByteArrayStreamingContent(byte[] byteArray)
Deprecated.
|
ByteArrayStreamingContent(byte[] byteArray,
int offset,
int length)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
writeTo(OutputStream out)
Deprecated.
Writes the byte content to the given output stream.
|
public ByteArrayStreamingContent(byte[] byteArray)
byteArray
- byte array contentpublic ByteArrayStreamingContent(byte[] byteArray, int offset, int length)
byteArray
- byte array contentoffset
- starting offset into the byte arraylength
- of bytes to read from byte arraypublic void writeTo(OutputStream out) throws IOException
StreamingContent
Implementations must not close the output stream, and instead should flush the output stream. Some callers may assume that the output stream has not been closed, and will fail to work if it has been closed.
writeTo
in interface StreamingContent
out
- output streamIOException
Copyright © 2011–2022 Google. All rights reserved.