Method Summary |
|
public void | clearBuffer() Flushes the buffer. |
public void | flushBuffer() Flushes the buffer. |
public void | flushChar() Flushes the buffer. |
public byte[] | getBuffer() |
public int | getBufferOffset() Returns the buffer offset. |
public int | getBufferSize() Gets the buffer size. |
public char[] | getCharBuffer() Returns the char buffer. |
public int | getCharOffset() Returns the char offset. |
abstract protected String | getEncoding() Returns the encoding. |
public int | getRemaining() Returns the remaining buffer entries. |
public boolean | isCauchoResponseStream() Returns true for a caucho response stream. |
public byte[] | nextBuffer(int offset) Returns the next buffer. |
public char[] | nextCharBuffer(int offset) Converts the char buffer. |
public void | print(int ch) Writes a character to the output. |
public void | print(char[] buffer, int offset, int length) Writes a char array to the output. |
public void | setBufferOffset(int offset) Sets the byte buffer offset. |
public void | setBufferSize(int size) Sets the buffer size. |
public void | setCharOffset(int offset) Sets the char offset. |
public void | start() Initializes the Buffered Response stream at the beginning of a request. |
public void | write(byte[] buf, int offset, int length) Writes the next chunk of data to the response stream. |
public void | write(int ch) Writes the next chunk of data to the response stream. |
abstract protected void | writeNext(char[] buffer, int offset, int length) Writes to the next. |