home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / rmi / transport / Connection.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  530 b   |  22 lines

  1. package sun.rmi.transport;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public interface Connection {
  8.    InputStream getInputStream() throws IOException;
  9.  
  10.    void releaseInputStream() throws IOException;
  11.  
  12.    OutputStream getOutputStream() throws IOException;
  13.  
  14.    void releaseOutputStream() throws IOException;
  15.  
  16.    boolean isReusable();
  17.  
  18.    void close() throws IOException;
  19.  
  20.    Channel getChannel();
  21. }
  22.