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

Class cornell.slk.jkernel.util.RemoteInputStreamImpl

java.lang.Object
    |
    +----cornell.slk.jkernel.util.RemoteInputStreamImpl

public class RemoteInputStreamImpl
extends java.lang.Object
implements RemoteInputStream
This is a RemoteInputStream that connects to an InputStream.


Constructor Summary
 RemoteInputStreamImpl(java.io.InputStream i)
 
 

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)
 
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RemoteInputStreamImpl

public RemoteInputStreamImpl(java.io.InputStream i)
Method Detail

read

public int read() throws java.io.IOException
Implements:
read in interface RemoteInputStream

read

public int read(byte[] b) throws java.io.IOException, java.lang.NullPointerException
Implements:
read in interface RemoteInputStream

read

public int read(byte[] b,
                int off,
                int len) throws java.io.IOException, java.lang.NullPointerException, java.lang.IndexOutOfBoundsException
Implements:
read in interface RemoteInputStream

skip

public long skip(long n) throws java.io.IOException
Implements:
skip in interface RemoteInputStream

available

public int available() throws java.io.IOException
Implements:
available in interface RemoteInputStream

close

public void close() throws java.io.IOException
Implements:
close in interface RemoteInputStream

mark

public void mark(int readlimit)
Implements:
mark in interface RemoteInputStream

reset

public void reset() throws java.io.IOException
Implements:
reset in interface RemoteInputStream

markSupported

public boolean markSupported()
Implements:
markSupported in interface RemoteInputStream

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