public class DefaultServletOutputStream extends ServletOutputStream
A default implementation of abstract servlet output stream.
Constructor and Description |
---|
DefaultServletOutputStream(OutputStream output)
Constructs a default servlet output stream which delegates to given output stream.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
write(byte[] bytes) |
void |
write(byte[] bytes,
int offset,
int length) |
void |
write(int b) |
public DefaultServletOutputStream(OutputStream output)
output
- The output stream to let this servlet output stream delegate to.public void write(int b) throws IOException
write
in class OutputStream
IOException
public void write(byte[] bytes) throws IOException
write
in class OutputStream
IOException
public void write(byte[] bytes, int offset, int length) throws IOException
write
in class OutputStream
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
Copyright © 2012–2017 OmniFaces. All rights reserved.