Inheritance diagram for stdbase::io::BufferedInputStream::
Public Methods | |
virtual int | available () throw (IOException) |
Get the number of bytes that can be read or skipped before the next read would block. | |
virtual void | mark (int readlimit) |
Marks the current position in the input stream incase the caller need return to this point - done by calling reset(). More... | |
virtual void | reset () throw (IOException) |
Returns the caller to a previously marked position in the input stream (if supported). More... | |
virtual bool | markSupported () |
Test to see whether the InputStream implementation supports the mark()/reset() methods. | |
virtual int | read (byte buffer[], int len) throw (IOException) |
Read a buffer of bytes - NEEDS Array. | |
virtual int | read () throw (IOException) |
Read a single byte from the stream and return it as an integer. More... | |
Static Public Methods | |
system::reference< BufferedInputStream > | create (InputStreamRef r) |
Protected Methods | |
BufferedInputStream (InputStreamRef input) | |
virtual | ~BufferedInputStream () |
Definition at line 54 of file BufferedInputStream.
|
Marks the current position in the input stream incase the caller need return to this point - done by calling reset().
Reimplemented from stdbase::io::FilterInputStream. Definition at line 81 of file BufferedInputStream.cpp. |
|
Read a single byte from the stream and return it as an integer.
Reimplemented from stdbase::io::FilterInputStream. Definition at line 201 of file BufferedInputStream.cpp. |
|
Returns the caller to a previously marked position in the input stream (if supported).
Reimplemented from stdbase::io::FilterInputStream. Definition at line 97 of file BufferedInputStream.cpp. |