add ServerSocketChannel.handleReadyOps to fix build

This commit is contained in:
Joel Dice 2011-01-13 07:03:28 -07:00
parent 39018c20e0
commit 0c253c40a2

View File

@ -32,6 +32,10 @@ public class ServerSocketChannel extends SelectableChannel {
return channel.socketFD();
}
public void handleReadyOps(int ops) {
channel.handleReadyOps(ops);
}
public SelectableChannel configureBlocking(boolean v) throws IOException {
return channel.configureBlocking(v);
}