kg.apc.emulators.ServerSocketChannelEmul Maven / Gradle / Ivy
package kg.apc.emulators;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.SocketAddress;
import java.net.SocketOption;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.Set;
class ServerSocketChannelEmul extends ServerSocketChannel {
public ServerSocketChannelEmul() {
super(null);
}
@Override
public ServerSocketChannel bind(SocketAddress socketAddress, int i) throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public SocketAddress getLocalAddress() throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public ServerSocketChannel setOption(SocketOption socketOption, T t) throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public T getOption(SocketOption socketOption) throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Set> supportedOptions() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public ServerSocket socket() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public SocketChannel accept() throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
protected void implCloseSelectableChannel() throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
protected void implConfigureBlocking(boolean bln) throws IOException {
throw new UnsupportedOperationException("Not supported yet.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy