01 /*
02 * Created on Jul 3, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.socket;
08
09 import java.io.IOException;
10 import java.nio.ByteBuffer;
11
12 /**
13 * Abstraction of a Socket to allow testing.
14 *
15 * @author Dean Hiller
16 */
17 public interface TCPSocket {
18
19 public int read(ByteBuffer b) throws IOException;
20
21 public int write(ByteBuffer b) throws IOException;
22 }
|