コード例 #1
0
 public void interestRead(boolean status) {
   source.interestRead(status);
 }
コード例 #2
0
 public boolean isOpen() {
   return source.isOpen();
 }
コード例 #3
0
 public void close() throws IOException {
   source.close();
 }
コード例 #4
0
 public int read(ByteBuffer b) throws IOException {
   return source.read(b);
 }
コード例 #5
0
 public void handleRead() throws IOException {
   while (buffer.hasRemaining() && source.read(buffer) != 0) ;
 }
コード例 #6
0
 // ReadObserver methods.
 public void handleRead() throws IOException {
   source.read(readData);
   assertEquals(0, source.read(readData)); // must have finish on first read.
 }