home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 May / PCWK5A99.ISO / Linuxwld / linuxwld.exe / Streamable.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-05-31  |  435 b   |  14 lines

  1. import java.io.IOException;
  2.  
  3. interface Streamable {
  4.    void init(String var1, int var2);
  5.  
  6.    String connect();
  7.  
  8.    void send(String var1) throws IOException;
  9.  
  10.    String receive() throws IOException;
  11.  
  12.    String disconnect() throws IOException;
  13. }
  14.