| java.lang.Object java.io.Reader org.jboss.resource.adapter.jdbc.remote.SerializableReader
Method Summary | |
public void | close() Close the stream. | public int | read(char cbuf, int off, int len) Read characters into a portion of an array. |
count | protected int count(Code) | | |
serialVersionUID | final static long serialVersionUID(Code) | | since: 1.1 |
close | public void close() throws IOException(Code) | | Close the stream. Once a stream has been closed, further read(),
ready(), mark(), or reset() invocations will throw an IOException.
Closing a previously-closed stream, however, has no effect.
throws: java.io.IOException - If an I/O error occurs |
read | public int read(char cbuf, int off, int len) throws IOException(Code) | | Read characters into a portion of an array. This method will block
until some input is available, an I/O error occurs, or the end of the
stream is reached.
Parameters: cbuf - Destination buffer Parameters: off - Offset at which to start storing characters Parameters: len - Maximum number of characters to read The number of characters read, or -1 if the end of thestream has been reached throws: java.io.IOException - If an I/O error occurs |
|
|