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 / Channel.class (.txt) next >
Encoding:
Java Class File  |  1997-07-08  |  456 b   |  14 lines

  1. package sun.rmi.transport;
  2.  
  3. import java.rmi.RemoteException;
  4.  
  5. public interface Channel extends Notifier {
  6.    Connection newConnection() throws RemoteException;
  7.  
  8.    Endpoint getEndpoint();
  9.  
  10.    void free(Connection var1, boolean var2) throws RemoteException;
  11.  
  12.    void dead(int var1);
  13. }
  14.