| javax.servlet.ServletInputStream org.apache.coyote.tomcat4.CoyoteInputStream
CoyoteInputStream | public class CoyoteInputStream extends ServletInputStream (Code) | | This class handles the readin input bytes, as well as the input buffering.
author: Remy Maucherat |
Method Summary | |
public int | available() | public void | close() Close the stream
Since we re-cycle, we can't allow the call to super.close()
which would permantely disable us. | public int | read() | public int | read(byte[] b) | public int | read(byte[] b, int off, int len) | protected int | readBytes() Read bytes to the read chunk buffer. | public int | readLine(byte[] b, int off, int len) | void | recycle() Recycle the input stream. | void | setRequest(Request coyoteRequest) |
close | public void close()(Code) | | Close the stream
Since we re-cycle, we can't allow the call to super.close()
which would permantely disable us.
|
readBytes | protected int readBytes() throws IOException(Code) | | Read bytes to the read chunk buffer.
|
recycle | void recycle()(Code) | | Recycle the input stream.
|
Methods inherited from javax.servlet.ServletInputStream | public int readLine(byte[] b, int off, int len) throws IOException(Code)(Java Doc)
|
|
|