org.apache.coyote.tomcat5
Class CoyoteInputStream
ServletInputStream
org.apache.coyote.tomcat5.CoyoteInputStream
public class CoyoteInputStream
extends ServletInputStream
This class handles reading bytes.
- Remy Maucherat
- Jean-Francois Arcand
int | available()
|
void | close() - Close the stream
Since we re-cycle, we can't allow the call to super.close()
which would permantely disable us.
|
int | read()
|
int | read(byte[] b)
|
int | read(byte[] b, int off, int len)
|
int | readLine(byte[] b, int off, int len)
|
CoyoteInputStream
protected CoyoteInputStream(InputBuffer ib)
available
public int available()
throws IOException
close
public void close()
throws IOException
Close the stream
Since we re-cycle, we can't allow the call to super.close()
which would permantely disable us.
read
public int read()
throws IOException
read
public int read(byte[] b)
throws IOException
read
public int read(byte[] b,
int off,
int len)
throws IOException
readLine
public int readLine(byte[] b,
int off,
int len)
throws IOException
Copyright B) 2000-2003 Apache Software Foundation. All Rights Reserved.