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 buffer,
OutputStream outputStream)
Default constructor.
|
public IdentityOutputStream(SessionOutputBuffer buffer, OutputStream outputStream)
buffer
- Session output bufferoutputStream
- Output streampublic void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
- If an I/O problem occurs.public void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public void write(byte[] b, int off, int len) throws IOException
write
in class OutputStream
IOException
public void write(byte[] b) throws IOException
write
in class OutputStream
IOException
public void write(int b) throws IOException
write
in class OutputStream
IOException
Copyright © 2005–2022 The Apache Software Foundation. All rights reserved.