public class IdentityOutputStream extends OutputStream
Note that this class NEVER closes the underlying stream, even when close gets called. Instead, the stream will be marked as closed and no further output will be permitted.
| Constructor and Description |
|---|
IdentityOutputStream(SessionOutputBuffer out) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Does not close the underlying socket output.
|
void |
flush() |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
public IdentityOutputStream(SessionOutputBuffer out)
public void close()
throws IOException
Does not close the underlying socket output.
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOException - If an I/O problem occurs.public void flush()
throws IOException
flush in interface Flushableflush in class OutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(int b)
throws IOException
write in class OutputStreamIOExceptionCopyright © 2010 - 2020 Adobe. All Rights Reserved