| java.lang.Object java.io.InputStream org.w3c.www.protocol.http.cache.ActiveInputStream
Method Summary | |
public synchronized int | available() | public synchronized void | close() | public synchronized void | interrupt() | public synchronized int | read() | public synchronized int | read(byte to, int toff, int tlen) | public synchronized void | receive(byte buf, int boff, int blen) We wait for half buffer size to be available before pushing data. |
interrupted | boolean interrupted(Code) | | |
available | public synchronized int available()(Code) | | |
close | public synchronized void close()(Code) | | |
interrupt | public synchronized void interrupt()(Code) | | |
read | public synchronized int read(byte to, int toff, int tlen) throws IOException(Code) | | |
receive | public synchronized void receive(byte buf, int boff, int blen) throws IOException(Code) | | We wait for half buffer size to be available before pushing data.
This is to prevent a silly window syndrom problem, where the pusher
and the puller would exachnge single bytes of data.
|
|
|