| java.lang.Object java.io.InputStream org.w3c.jigsaw.ssi.DelayedInputStream
DelayedInputStream | abstract public class DelayedInputStream extends InputStream (Code) | | Used to delay the (perhaps expensive) creation of a real stream
until the first access.
author: Antonio Ramirez |
Field Summary | |
protected InputStream | in The InputStream that data will be really read from. |
Method Summary | |
final public int | available() | final public void | close() | abstract protected void | init() This method is called on the first access to the stream.
(Not at construction time.) Should initialize
in as a valid stream. | final public void | mark(int readlimit) | final public boolean | markSupported() | final public int | read() | final public int | read(byte b, int off, int len) | final public int | read(byte b) | final public void | reset() | final public long | skip(long n) |
init | abstract protected void init()(Code) | | This method is called on the first access to the stream.
(Not at construction time.) Should initialize
in as a valid stream. Must not make it
null.
|
mark | final public void mark(int readlimit)(Code) | | |
markSupported | final public boolean markSupported()(Code) | | |
|
|