Method Summary |
|
public void | clear() Clears the output buffer, including headers if possible. |
abstract public void | clearBuffer() Clears the output buffer. |
public void | clearClosed() |
public void | close() |
public void | finish() |
public void | flush() Flushes the output. |
abstract public void | flushBuffer() Flushes the output buffer. |
public void | flushByte() Flushes the output. |
public void | flushChar() Flushes the output. |
abstract public int | getBufferSize() Gets the buffer size. |
abstract public char[] | getCharBuffer() Returns the char buffer. |
abstract public int | getCharOffset() Returns the char buffer offset. |
public int | getContentLength() |
abstract public int | getRemaining() Returns the remaining buffer entries. |
public boolean | isAutoFlush() Return the auto-flush. |
abstract public boolean | isCauchoResponseStream() Returns true for a Caucho response stream. |
public boolean | isCommitted() Returns true if the response is committed. |
public boolean | isHead() Set true for HEAD requests. |
abstract public char[] | nextCharBuffer(int offset) Returns the next char buffer. |
abstract public void | print(int ch) Writes a character to the output. |
abstract public void | print(char[] buffer, int offset, int length) Writes a char array to the output. |
public void | sendFile(Path path, long length) Sends a file. |
public void | setAutoFlush(boolean isAutoFlush) |
abstract public void | setBufferSize(int size) Sets the buffer size. |
public void | setByteCacheStream(OutputStream cacheStream) Sets a byte cache stream. |
public void | setCharCacheStream(Writer cacheStream) Sets a char cache stream. |
abstract public void | setCharOffset(int offset) Sets the char buffer offset. |
public void | setEncoding(String encoding) Sets the encoding. |
public void | setHead() Set true for HEAD requests. |
public void | setLocale(Locale locale) Sets the locale. |
public void | setOutputStreamOnly(boolean isOutputStreamOnly) Set true for output stream only request. |
public void | start() Starts the response stream. |
abstract public void | write(int v) Writes a byte to the output. |
abstract public void | write(byte[] buffer, int offset, int length) Writes a byte array to the output. |