mirror of
https://github.com/corda/corda.git
synced 2025-02-02 01:08:09 +00:00
add ServerSocketChannel.handleReadyOps to fix build
This commit is contained in:
parent
39018c20e0
commit
0c253c40a2
@ -32,6 +32,10 @@ public class ServerSocketChannel extends SelectableChannel {
|
|||||||
return channel.socketFD();
|
return channel.socketFD();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void handleReadyOps(int ops) {
|
||||||
|
channel.handleReadyOps(ops);
|
||||||
|
}
|
||||||
|
|
||||||
public SelectableChannel configureBlocking(boolean v) throws IOException {
|
public SelectableChannel configureBlocking(boolean v) throws IOException {
|
||||||
return channel.configureBlocking(v);
|
return channel.configureBlocking(v);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user