Methods Summary |
---|
public int | available()
return is.available();
|
public void | close()
try {
is.close();
} catch (Exception e) {
// ignored
}
try {
controlSocket.close();
} catch (Exception e) {
// ignored
}
|
public synchronized void | mark(int limit)
is.mark(limit);
|
public boolean | markSupported()
return is.markSupported();
|
public int | read()
return is.read();
|
public int | read(byte[] buf, int off, int nbytes)
return is.read(buf, off, nbytes);
|
public synchronized void | reset()
is.reset();
|
public long | skip(long sbytes)
return is.skip(sbytes);
|