jaugment2.helpers
Interface RemoteInputStreamIF

All Known Implementing Classes:
RemoteInputStream

public interface RemoteInputStreamIF
extends java.rmi.Remote

helper-interface for SerializableInputStream


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

available

public int available()
              throws java.io.IOException,
                     java.rmi.RemoteException

close

public void close()
           throws java.io.IOException,
                  java.rmi.RemoteException

mark

public void mark(int readlimit)
          throws java.rmi.RemoteException

markSupported

public boolean markSupported()
                      throws java.rmi.RemoteException

read

public int read()
         throws java.io.IOException,
                java.rmi.RemoteException

read

public int read(byte[] b)
         throws java.io.IOException,
                java.rmi.RemoteException

read

public int read(byte[] b,
                int off,
                int len)
         throws java.io.IOException,
                java.rmi.RemoteException

reset

public void reset()
           throws java.io.IOException,
                  java.rmi.RemoteException

skip

public long skip(long n)
          throws java.io.IOException