Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1563 - 1
package dongfang.mkt.comm;
2
 
3
import java.io.IOException;
4
import java.io.InputStream;
5
import java.io.OutputStream;
6
 
7
public interface MKConnection {
8
        void init(String id) throws IOException;
9
        InputStream getInputStream() throws IOException ;
10
        OutputStream getOutputStream() throws IOException ;
11
}