| java.lang.Object java.io.InputStream org.apache.harmony.xnet.provider.jsse.SSLSocketInputStream
SSLSocketInputStream | final public class SSLSocketInputStream extends InputStream (Code) | | This class provides input data stream functionality
for SSLSocket. It accumulates the application data
received by SSL protocol.
|
Method Summary | |
public int | available() Returns the number of bytes available for reading without blocking. | public void | close() | public int | read() Reads one byte. | public int | read(byte[] b) Method acts as described in spec for superclass. | public int | read(byte[] b, int off, int len) Method acts as described in spec for superclass. | protected void | setEnd() Tells to the stream that the end of the income data has
been reached. | public long | skip(long n) Method acts as described in spec for superclass. |
dataPoint | protected Adapter dataPoint(Code) | | |
SSLSocketInputStream | protected SSLSocketInputStream(SSLSocketImpl owner)(Code) | | Creates the application data input stream for specified socket.
Parameters: owner - the socket which will provide this input streamto client applications. |
available | public int available() throws IOException(Code) | | Returns the number of bytes available for reading without blocking.
the number of available bytes. throws: IOException - |
read | public int read() throws IOException(Code) | | Reads one byte. If there is no data in the underlying buffer,
this operation can block until the data will be
available.
read value. throws: IOException - |
setEnd | protected void setEnd()(Code) | | Tells to the stream that the end of the income data has
been reached.
|
|
|