Interface cornell.slk.jkernel.core.RemoteInputStream
Source code
- Implementing Classes:
- RemoteInputStreamImpl
- public interface RemoteInputStream
- extends Remote
A RemoteInputStream is a remote interface for input streams.
See jkernel.util for sample implementations of
RemoteInputStream.
read
public int read() throws java.io.IOException, RemoteException
read
public int read(byte[] b) throws java.io.IOException, java.lang.NullPointerException, RemoteException
read
public int read(byte[] b,
int off,
int len) throws java.io.IOException, java.lang.NullPointerException, java.lang.IndexOutOfBoundsException, RemoteException
skip
public long skip(long n) throws java.io.IOException, RemoteException
available
public int available() throws java.io.IOException, RemoteException
close
public void close() throws java.io.IOException, RemoteException
mark
public void mark(int readlimit) throws RemoteException
reset
public void reset() throws java.io.IOException, RemoteException
markSupported
public boolean markSupported() throws RemoteException