fix regression in SocketSelector when selecting ServerSocketChannels

This commit is contained in:
Joel Dice
2009-09-28 16:54:49 -06:00
parent 6fa25f992c
commit fb40b046fd
3 changed files with 8 additions and 2 deletions

View File

@ -16,6 +16,8 @@ import java.nio.ByteBuffer;
public abstract class SelectableChannel implements Channel {
private SelectionKey key;
abstract int socketFD();
public abstract SelectableChannel configureBlocking(boolean v)
throws IOException;