Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS

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.


Method Summary
int  available()
 
void  close()
 
void  mark(int readlimit)
 
boolean  markSupported()
 
int  read()
 
int  read(byte[] b)
 
int  read(byte[] b, int off, int len)
 
void  reset()
 
long  skip(long n)
 
 

Method Detail

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

Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS