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

Interface cornell.slk.jkernel.core.RemoteOutputStream

Source code
Implementing Classes:
RemoteOutputStreamImpl

public interface RemoteOutputStream
extends Remote
A RemoteOutputStream is a remote interface for output streams. See jkernel.util for sample implementations of RemoteOutputStream.


Method Summary
void  close()
 
void  flush()
 
void  write(int b)
 
void  write(byte[] b)
 
void  write(byte[] b, int off, int len)
 
 

Method Detail

write

public void write(int b) throws java.io.IOException, RemoteException

write

public void write(byte[] b) throws java.io.IOException, java.lang.NullPointerException, RemoteException

write

public void write(byte[] b,
                  int off,
                  int len) throws java.io.IOException, java.lang.NullPointerException, java.lang.IndexOutOfBoundsException, RemoteException

flush

public void flush() throws java.io.IOException, RemoteException

close

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

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