Method Summary |
|
final public int | available() Forwards the request to the real InputStream . |
final public boolean | canSeekBackwards() Returns false since seking backwards is not supported. |
final public void | close() Forwards the request to the real InputStream . |
final public long | getFilePointer() Returns the current position in the stream (bytes read). |
final public synchronized void | mark(int readLimit) Forwards the request to the real InputStream . |
public boolean | markSupported() Forwards the request to the real InputStream . |
final public int | read() Forwards the request to the real InputStream . |
final public int | read(byte[] b, int off, int len) Forwards the request to the real InputStream . |
final public synchronized void | reset() Forwards the request to the real InputStream . |
final public void | seek(long pos) Seeks forward to the given position in the stream. |
final public long | skip(long n) Forwards the request to the real InputStream . |