}
@Override
public SelectionKey interestOps(int ops) {
if (!isValid()) {
throw new CancelledKeyException();
}
if ((ops & ~(channel().validOps())) != 0) {
throw new IllegalArgumentException("invalid ops");
}
if (((ops & OP_CONNECT) != 0) && socketUDT.isConnected()) {