org.apache.http.impl.io.IdentityInputStream
Summary
Public Constructors
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
Public Methods
public
int
available()
Answers a int representing then number of bytes that are available before
this InputStream will block. This method always returns 0. Subclasses
should override and indicate the correct number of bytes available.
public
void
close()
Close the InputStream. Concrete implementations of this class should free
any resources during close. This implementation does nothing.
public
int
read(byte[] b, int off, int len)
Reads at most
length bytes from the Stream and stores them
in byte array
b starting at
offset. Answer
the number of bytes actually read or -1 if no bytes were read and end of
stream was encountered.
Parameters
| b
| the byte array in which to store the read bytes. |
| off
| the offset in b to store the read bytes. |
| len
| the maximum number of bytes to store in b. |
public
int
read()
Reads a single byte from this InputStream and returns the result as an
int. The low-order byte is returned or -1 of the end of stream was
encountered. This abstract implementation must be provided by concrete
subclasses.